Makefile 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. include $(SUBDIR)../config.mak
  2. NAME = avutil
  3. HEADERS = adler32.h \
  4. aes.h \
  5. attributes.h \
  6. audio_fifo.h \
  7. audioconvert.h \
  8. avassert.h \
  9. avstring.h \
  10. avutil.h \
  11. base64.h \
  12. blowfish.h \
  13. bprint.h \
  14. bswap.h \
  15. common.h \
  16. cpu.h \
  17. crc.h \
  18. error.h \
  19. eval.h \
  20. fifo.h \
  21. file.h \
  22. imgutils.h \
  23. intfloat.h \
  24. intfloat_readwrite.h \
  25. intreadwrite.h \
  26. lfg.h \
  27. log.h \
  28. mathematics.h \
  29. md5.h \
  30. mem.h \
  31. dict.h \
  32. old_pix_fmts.h \
  33. opt.h \
  34. parseutils.h \
  35. pixdesc.h \
  36. pixfmt.h \
  37. random_seed.h \
  38. rational.h \
  39. samplefmt.h \
  40. sha.h \
  41. time.h \
  42. timecode.h \
  43. timestamp.h \
  44. version.h \
  45. xtea.h \
  46. HEADERS-$(CONFIG_LZO) += lzo.h
  47. ARCH_HEADERS = bswap.h \
  48. intmath.h \
  49. intreadwrite.h \
  50. timer.h \
  51. BUILT_HEADERS = avconfig.h
  52. OBJS = adler32.o \
  53. aes.o \
  54. audio_fifo.o \
  55. audioconvert.o \
  56. avstring.o \
  57. base64.o \
  58. blowfish.o \
  59. bprint.o \
  60. cpu.o \
  61. crc.o \
  62. des.o \
  63. error.o \
  64. eval.o \
  65. fifo.o \
  66. file.o \
  67. float_dsp.o \
  68. imgutils.o \
  69. intfloat_readwrite.o \
  70. intmath.o \
  71. lfg.o \
  72. lls.o \
  73. log.o \
  74. log2_tab.o \
  75. mathematics.o \
  76. md5.o \
  77. mem.o \
  78. dict.o \
  79. opt.o \
  80. parseutils.o \
  81. pixdesc.o \
  82. random_seed.o \
  83. rational.o \
  84. rc4.o \
  85. samplefmt.o \
  86. sha.o \
  87. time.o \
  88. timecode.o \
  89. tree.o \
  90. utils.o \
  91. xga_font_data.o \
  92. xtea.o \
  93. OBJS-$(CONFIG_LZO) += lzo.o
  94. OBJS += $(COMPAT_OBJS:%=../compat/%)
  95. SKIPHEADERS = old_pix_fmts.h
  96. TESTPROGS = adler32 \
  97. aes \
  98. avstring \
  99. base64 \
  100. blowfish \
  101. bprint \
  102. cpu \
  103. crc \
  104. des \
  105. error \
  106. eval \
  107. file \
  108. fifo \
  109. lfg \
  110. lls \
  111. md5 \
  112. opt \
  113. pca \
  114. parseutils \
  115. random_seed \
  116. rational \
  117. sha \
  118. tree \
  119. xtea \
  120. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  121. TOOLS = ffeval ffescape
  122. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2