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.

207 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. tea.h \
  65. HEADERS-$(CONFIG_LZO) += lzo.h
  66. HEADERS-$(CONFIG_OPENCL) += opencl.h
  67. ARCH_HEADERS = bswap.h \
  68. intmath.h \
  69. intreadwrite.h \
  70. timer.h \
  71. BUILT_HEADERS = avconfig.h \
  72. ffversion.h
  73. OBJS = adler32.o \
  74. aes.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. color_utils.o \
  85. cpu.o \
  86. crc.o \
  87. des.o \
  88. display.o \
  89. downmix_info.o \
  90. error.o \
  91. eval.o \
  92. fifo.o \
  93. file.o \
  94. file_open.o \
  95. float_dsp.o \
  96. fixed_dsp.o \
  97. frame.o \
  98. hash.o \
  99. hmac.o \
  100. imgutils.o \
  101. intmath.o \
  102. lfg.o \
  103. lls.o \
  104. log.o \
  105. log2_tab.o \
  106. mathematics.o \
  107. md5.o \
  108. mem.o \
  109. murmur3.o \
  110. dict.o \
  111. opt.o \
  112. parseutils.o \
  113. pixdesc.o \
  114. pixelutils.o \
  115. random_seed.o \
  116. rational.o \
  117. reverse.o \
  118. rc4.o \
  119. ripemd.o \
  120. samplefmt.o \
  121. sha.o \
  122. sha512.o \
  123. stereo3d.o \
  124. threadmessage.o \
  125. time.o \
  126. timecode.o \
  127. tree.o \
  128. twofish.o \
  129. utils.o \
  130. xga_font_data.o \
  131. xtea.o \
  132. tea.o \
  133. OBJS-$(!HAVE_ATOMICS_NATIVE) += atomic.o \
  134. OBJS-$(CONFIG_LZO) += lzo.o
  135. OBJS-$(CONFIG_OPENCL) += opencl.o opencl_internal.o
  136. OBJS += $(COMPAT_OBJS:%=../compat/%)
  137. # Windows resource file
  138. SLIBOBJS-$(HAVE_GNU_WINDRES) += avutilres.o
  139. SKIPHEADERS = old_pix_fmts.h
  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