Makefile 15 KB

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