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.

182 lines
11KB

  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. frame.o \
  86. hash.o \
  87. hmac.o \
  88. imgutils.o \
  89. intfloat_readwrite.o \
  90. intmath.o \
  91. lfg.o \
  92. lls1.o \
  93. lls2.o \
  94. log.o \
  95. log2_tab.o \
  96. mathematics.o \
  97. md5.o \
  98. mem.o \
  99. murmur3.o \
  100. dict.o \
  101. opt.o \
  102. parseutils.o \
  103. pixdesc.o \
  104. random_seed.o \
  105. rational.o \
  106. rc4.o \
  107. ripemd.o \
  108. samplefmt.o \
  109. sha.o \
  110. sha512.o \
  111. stereo3d.o \
  112. time.o \
  113. timecode.o \
  114. tree.o \
  115. utils.o \
  116. xga_font_data.o \
  117. xtea.o \
  118. OBJS-$(CONFIG_LZO) += lzo.o
  119. OBJS-$(CONFIG_OPENCL) += opencl.o opencl_internal.o
  120. OBJS += $(COMPAT_OBJS:%=../compat/%)
  121. # Windows resource file
  122. SLIBOBJS-$(HAVE_GNU_WINDRES) += avutilres.o
  123. SKIPHEADERS = old_pix_fmts.h
  124. SKIPHEADERS-$(HAVE_ATOMICS_GCC) += atomic_gcc.h
  125. SKIPHEADERS-$(HAVE_ATOMICS_SUNCC) += atomic_suncc.h
  126. SKIPHEADERS-$(HAVE_ATOMICS_WIN32) += atomic_win32.h
  127. SKIPHEADERS-$(CONFIG_OPENCL) += opencl.h
  128. TESTPROGS = adler32 \
  129. aes \
  130. atomic \
  131. avstring \
  132. base64 \
  133. blowfish \
  134. bprint \
  135. cpu \
  136. crc \
  137. des \
  138. error \
  139. eval \
  140. file \
  141. fifo \
  142. float_dsp \
  143. hmac \
  144. lfg \
  145. lls1 \
  146. lls2 \
  147. md5 \
  148. murmur3 \
  149. opt \
  150. pca \
  151. parseutils \
  152. random_seed \
  153. rational \
  154. ripemd \
  155. sha \
  156. sha512 \
  157. tree \
  158. utf8 \
  159. xtea \
  160. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  161. TOOLS = crypto_bench ffhash ffeval ffescape
  162. tools/crypto_bench$(EXESUF): ELIBS += $(if $(VERSUS),$(subst +, -l,+$(VERSUS)),)
  163. tools/crypto_bench$(EXESUF): CFLAGS += -DUSE_EXT_LIBS=0$(if $(VERSUS),$(subst +,+USE_,+$(VERSUS)),)
  164. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2