Makefile 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. include $(SUBDIR)../config.mak
  2. NAME = avutil
  3. HEADERS = adler32.h \
  4. aes.h \
  5. attributes.h \
  6. audioconvert.h \
  7. avassert.h \
  8. avstring.h \
  9. avutil.h \
  10. base64.h \
  11. bswap.h \
  12. common.h \
  13. cpu.h \
  14. crc.h \
  15. error.h \
  16. eval.h \
  17. fifo.h \
  18. file.h \
  19. imgutils.h \
  20. intfloat_readwrite.h \
  21. intreadwrite.h \
  22. lfg.h \
  23. log.h \
  24. lzo.h \
  25. mathematics.h \
  26. md5.h \
  27. mem.h \
  28. dict.h \
  29. opt.h \
  30. parseutils.h \
  31. pixdesc.h \
  32. pixfmt.h \
  33. random_seed.h \
  34. rational.h \
  35. samplefmt.h \
  36. sha.h \
  37. sha1.h \
  38. BUILT_HEADERS = avconfig.h
  39. OBJS = adler32.o \
  40. aes.o \
  41. audioconvert.o \
  42. avstring.o \
  43. base64.o \
  44. cpu.o \
  45. crc.o \
  46. des.o \
  47. error.o \
  48. eval.o \
  49. fifo.o \
  50. file.o \
  51. imgutils.o \
  52. intfloat_readwrite.o \
  53. inverse.o \
  54. lfg.o \
  55. lls.o \
  56. log.o \
  57. lzo.o \
  58. mathematics.o \
  59. md5.o \
  60. mem.o \
  61. dict.o \
  62. opt.o \
  63. parseutils.o \
  64. pixdesc.o \
  65. random_seed.o \
  66. rational.o \
  67. rc4.o \
  68. samplefmt.o \
  69. sha.o \
  70. tree.o \
  71. utils.o \
  72. OBJS-$(ARCH_ARM) += arm/cpu.o
  73. OBJS-$(ARCH_PPC) += ppc/cpu.o
  74. OBJS-$(ARCH_X86) += x86/cpu.o
  75. TESTPROGS = adler32 aes base64 cpu crc des eval lls md5 pca sha tree
  76. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  77. DIRS = arm bfin sh4 x86
  78. ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h
  79. include $(SUBDIR)../subdir.mak
  80. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2