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.

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