Makefile 8.5 KB

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