You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
825B

  1. #!/usr/bin/env python
  2. def options(opt):
  3. pass
  4. def configure(conf):
  5. pass
  6. def build(bld):
  7. lib_source = '''
  8. jcapimin.c
  9. jcapistd.c
  10. jcarith.c
  11. jctrans.c
  12. jcparam.c
  13. jdatadst.c
  14. jcinit.c
  15. jcmaster.c
  16. jcmarker.c
  17. jcmainct.c
  18. jcprepct.c
  19. jccoefct.c
  20. jccolor.c
  21. jcsample.c
  22. jchuff.c
  23. jcdctmgr.c
  24. jfdctfst.c
  25. jfdctflt.c
  26. jfdctint.c
  27. jdapimin.c
  28. jdapistd.c
  29. jdarith.c
  30. jdtrans.c
  31. jdatasrc.c
  32. jdmaster.c
  33. jdinput.c
  34. jdmarker.c
  35. jdhuff.c
  36. jdmainct.c
  37. jdcoefct.c
  38. jdpostct.c
  39. jddctmgr.c
  40. jidctfst.c
  41. jidctflt.c
  42. jidctint.c
  43. jdsample.c
  44. jdcolor.c
  45. jquant1.c
  46. jquant2.c
  47. jdmerge.c
  48. jaricom.c
  49. jcomapi.c
  50. jutils.c
  51. jerror.c
  52. jmemmgr.c
  53. jmemnobs.c
  54. '''
  55. bld.stlib( source = lib_source,
  56. cflags = [ '-fPIC' ],
  57. cxxflags = [ '-fPIC' ],
  58. target = 'ntk_jpeg',
  59. includes = ['.' ],
  60. install_path = None )