Makefile 11 KB

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