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.

154 lines
9.5KB

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