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.

158 lines
9.8KB

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