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.

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