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.

222 lines
14KB

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