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.

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