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.

140 lines
8.7KB

  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. channel_layout.h \
  16. common.h \
  17. cpu.h \
  18. crc.h \
  19. error.h \
  20. eval.h \
  21. fifo.h \
  22. file.h \
  23. hmac.h \
  24. imgutils.h \
  25. intfloat.h \
  26. intfloat_readwrite.h \
  27. intreadwrite.h \
  28. lfg.h \
  29. log.h \
  30. mathematics.h \
  31. md5.h \
  32. mem.h \
  33. dict.h \
  34. old_pix_fmts.h \
  35. opt.h \
  36. parseutils.h \
  37. pixdesc.h \
  38. pixfmt.h \
  39. random_seed.h \
  40. rational.h \
  41. samplefmt.h \
  42. sha.h \
  43. time.h \
  44. timecode.h \
  45. timestamp.h \
  46. version.h \
  47. xtea.h \
  48. HEADERS-$(CONFIG_LZO) += lzo.h
  49. ARCH_HEADERS = bswap.h \
  50. intmath.h \
  51. intreadwrite.h \
  52. timer.h \
  53. BUILT_HEADERS = avconfig.h
  54. OBJS = adler32.o \
  55. aes.o \
  56. audio_fifo.o \
  57. avstring.o \
  58. base64.o \
  59. blowfish.o \
  60. bprint.o \
  61. channel_layout.o \
  62. cpu.o \
  63. crc.o \
  64. des.o \
  65. error.o \
  66. eval.o \
  67. fifo.o \
  68. file.o \
  69. float_dsp.o \
  70. hmac.o \
  71. imgutils.o \
  72. intfloat_readwrite.o \
  73. intmath.o \
  74. lfg.o \
  75. lls.o \
  76. log.o \
  77. log2_tab.o \
  78. mathematics.o \
  79. md5.o \
  80. mem.o \
  81. dict.o \
  82. opt.o \
  83. parseutils.o \
  84. pixdesc.o \
  85. random_seed.o \
  86. rational.o \
  87. rc4.o \
  88. samplefmt.o \
  89. sha.o \
  90. time.o \
  91. timecode.o \
  92. tree.o \
  93. utils.o \
  94. xga_font_data.o \
  95. xtea.o \
  96. OBJS-$(CONFIG_LZO) += lzo.o
  97. OBJS += $(COMPAT_OBJS:%=../compat/%)
  98. SKIPHEADERS = old_pix_fmts.h
  99. TESTPROGS = adler32 \
  100. aes \
  101. avstring \
  102. base64 \
  103. blowfish \
  104. bprint \
  105. cpu \
  106. crc \
  107. des \
  108. error \
  109. eval \
  110. file \
  111. fifo \
  112. hmac \
  113. lfg \
  114. lls \
  115. md5 \
  116. opt \
  117. pca \
  118. parseutils \
  119. random_seed \
  120. rational \
  121. sha \
  122. tree \
  123. xtea \
  124. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  125. TOOLS = ffeval ffescape
  126. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2