Makefile 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. lls.o \
  87. log.o \
  88. log2_tab.o \
  89. mathematics.o \
  90. md5.o \
  91. mem.o \
  92. murmur3.o \
  93. dict.o \
  94. opt.o \
  95. parseutils.o \
  96. pixdesc.o \
  97. random_seed.o \
  98. rational.o \
  99. rc4.o \
  100. ripemd.o \
  101. samplefmt.o \
  102. sha.o \
  103. sha512.o \
  104. time.o \
  105. timecode.o \
  106. tree.o \
  107. utils.o \
  108. xga_font_data.o \
  109. xtea.o \
  110. OBJS-$(CONFIG_LZO) += lzo.o
  111. OBJS-$(CONFIG_OPENCL) += opencl.o opencl_internal.o
  112. OBJS += $(COMPAT_OBJS:%=../compat/%)
  113. SKIPHEADERS = old_pix_fmts.h
  114. SKIPHEADERS-$(HAVE_ATOMICS_GCC) += atomic_gcc.h
  115. SKIPHEADERS-$(HAVE_ATOMICS_SUNCC) += atomic_suncc.h
  116. SKIPHEADERS-$(HAVE_ATOMICS_WIN32) += atomic_win32.h
  117. SKIPHEADERS-$(CONFIG_OPENCL) += opencl.h
  118. TESTPROGS = adler32 \
  119. aes \
  120. atomic \
  121. avstring \
  122. base64 \
  123. blowfish \
  124. bprint \
  125. cpu \
  126. crc \
  127. des \
  128. error \
  129. eval \
  130. file \
  131. fifo \
  132. hmac \
  133. lfg \
  134. lls \
  135. md5 \
  136. murmur3 \
  137. opt \
  138. pca \
  139. parseutils \
  140. random_seed \
  141. rational \
  142. ripemd \
  143. sha \
  144. sha512 \
  145. tree \
  146. xtea \
  147. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  148. TOOLS = ffhash ffeval ffescape
  149. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2