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.

189 lines
12KB

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