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.

142 lines
8.9KB

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