Makefile 11 KB

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