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.

201 lines
13KB

  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. buffer.h \
  16. cast5.h \
  17. camellia.h \
  18. channel_layout.h \
  19. common.h \
  20. cpu.h \
  21. crc.h \
  22. display.h \
  23. downmix_info.h \
  24. error.h \
  25. eval.h \
  26. fifo.h \
  27. file.h \
  28. frame.h \
  29. hash.h \
  30. hmac.h \
  31. imgutils.h \
  32. intfloat.h \
  33. intreadwrite.h \
  34. lfg.h \
  35. log.h \
  36. macros.h \
  37. mathematics.h \
  38. md5.h \
  39. mem.h \
  40. motion_vector.h \
  41. murmur3.h \
  42. dict.h \
  43. old_pix_fmts.h \
  44. opt.h \
  45. parseutils.h \
  46. pixdesc.h \
  47. pixelutils.h \
  48. pixfmt.h \
  49. random_seed.h \
  50. replaygain.h \
  51. rational.h \
  52. ripemd.h \
  53. samplefmt.h \
  54. sha.h \
  55. sha512.h \
  56. stereo3d.h \
  57. threadmessage.h \
  58. time.h \
  59. timecode.h \
  60. timestamp.h \
  61. twofish.h \
  62. version.h \
  63. xtea.h \
  64. HEADERS-$(CONFIG_LZO) += lzo.h
  65. HEADERS-$(CONFIG_OPENCL) += opencl.h
  66. ARCH_HEADERS = bswap.h \
  67. intmath.h \
  68. intreadwrite.h \
  69. timer.h \
  70. BUILT_HEADERS = avconfig.h \
  71. ffversion.h
  72. OBJS = adler32.o \
  73. aes.o \
  74. atomic.o \
  75. audio_fifo.o \
  76. avstring.o \
  77. base64.o \
  78. blowfish.o \
  79. bprint.o \
  80. buffer.o \
  81. cast5.o \
  82. camellia.o \
  83. channel_layout.o \
  84. cpu.o \
  85. crc.o \
  86. des.o \
  87. display.o \
  88. downmix_info.o \
  89. error.o \
  90. eval.o \
  91. fifo.o \
  92. file.o \
  93. file_open.o \
  94. float_dsp.o \
  95. fixed_dsp.o \
  96. frame.o \
  97. hash.o \
  98. hmac.o \
  99. imgutils.o \
  100. intmath.o \
  101. lfg.o \
  102. lls.o \
  103. log.o \
  104. log2_tab.o \
  105. mathematics.o \
  106. md5.o \
  107. mem.o \
  108. murmur3.o \
  109. dict.o \
  110. opt.o \
  111. parseutils.o \
  112. pixdesc.o \
  113. pixelutils.o \
  114. random_seed.o \
  115. rational.o \
  116. rc4.o \
  117. ripemd.o \
  118. samplefmt.o \
  119. sha.o \
  120. sha512.o \
  121. stereo3d.o \
  122. threadmessage.o \
  123. time.o \
  124. timecode.o \
  125. tree.o \
  126. twofish.o \
  127. utils.o \
  128. xga_font_data.o \
  129. xtea.o \
  130. OBJS-$(CONFIG_LZO) += lzo.o
  131. OBJS-$(CONFIG_OPENCL) += opencl.o opencl_internal.o
  132. OBJS += $(COMPAT_OBJS:%=../compat/%)
  133. # Windows resource file
  134. SLIBOBJS-$(HAVE_GNU_WINDRES) += avutilres.o
  135. SKIPHEADERS = old_pix_fmts.h
  136. SKIPHEADERS-$(HAVE_ATOMICS_GCC) += atomic_gcc.h
  137. SKIPHEADERS-$(HAVE_ATOMICS_SUNCC) += atomic_suncc.h
  138. SKIPHEADERS-$(HAVE_ATOMICS_WIN32) += atomic_win32.h
  139. SKIPHEADERS-$(CONFIG_OPENCL) += opencl.h
  140. TESTPROGS = adler32 \
  141. aes \
  142. atomic \
  143. avstring \
  144. base64 \
  145. blowfish \
  146. bprint \
  147. cast5 \
  148. camellia \
  149. cpu \
  150. crc \
  151. des \
  152. dict \
  153. error \
  154. eval \
  155. file \
  156. fifo \
  157. float_dsp \
  158. hmac \
  159. lfg \
  160. lls \
  161. log \
  162. md5 \
  163. murmur3 \
  164. opt \
  165. pca \
  166. parseutils \
  167. pixdesc \
  168. pixelutils \
  169. random_seed \
  170. rational \
  171. ripemd \
  172. sha \
  173. sha512 \
  174. softfloat \
  175. tree \
  176. twofish \
  177. utf8 \
  178. xtea \
  179. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  180. TOOLS = crypto_bench ffhash ffeval ffescape
  181. tools/crypto_bench$(EXESUF): ELIBS += $(if $(VERSUS),$(subst +, -l,+$(VERSUS)),)
  182. tools/crypto_bench$(EXESUF): CFLAGS += -DUSE_EXT_LIBS=0$(if $(VERSUS),$(subst +,+USE_,+$(VERSUS)),)
  183. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2