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.

161 lines
10KB

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