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.

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