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.

124 lines
8.0KB

  1. NAME = avutil
  2. HEADERS = adler32.h \
  3. aes.h \
  4. attributes.h \
  5. audio_fifo.h \
  6. audioconvert.h \
  7. avassert.h \
  8. avstring.h \
  9. avutil.h \
  10. base64.h \
  11. blowfish.h \
  12. bswap.h \
  13. buffer.h \
  14. channel_layout.h \
  15. common.h \
  16. cpu.h \
  17. crc.h \
  18. error.h \
  19. eval.h \
  20. fifo.h \
  21. file.h \
  22. hmac.h \
  23. imgutils.h \
  24. intfloat.h \
  25. intfloat_readwrite.h \
  26. intreadwrite.h \
  27. lfg.h \
  28. log.h \
  29. mathematics.h \
  30. md5.h \
  31. mem.h \
  32. dict.h \
  33. old_pix_fmts.h \
  34. opt.h \
  35. parseutils.h \
  36. pixdesc.h \
  37. pixfmt.h \
  38. random_seed.h \
  39. rational.h \
  40. samplefmt.h \
  41. sha.h \
  42. time.h \
  43. version.h \
  44. xtea.h \
  45. HEADERS-$(CONFIG_LZO) += lzo.h
  46. ARCH_HEADERS = bswap.h \
  47. intmath.h \
  48. intreadwrite.h \
  49. timer.h \
  50. BUILT_HEADERS = avconfig.h
  51. OBJS = adler32.o \
  52. aes.o \
  53. atomic.o \
  54. audio_fifo.o \
  55. avstring.o \
  56. base64.o \
  57. blowfish.o \
  58. buffer.o \
  59. channel_layout.o \
  60. cpu.o \
  61. crc.o \
  62. des.o \
  63. error.o \
  64. eval.o \
  65. fifo.o \
  66. file.o \
  67. float_dsp.o \
  68. hmac.o \
  69. imgutils.o \
  70. intfloat_readwrite.o \
  71. intmath.o \
  72. lfg.o \
  73. lls.o \
  74. log.o \
  75. log2_tab.o \
  76. mathematics.o \
  77. md5.o \
  78. mem.o \
  79. dict.o \
  80. opt.o \
  81. parseutils.o \
  82. pixdesc.o \
  83. random_seed.o \
  84. rational.o \
  85. rc4.o \
  86. samplefmt.o \
  87. sha.o \
  88. time.o \
  89. tree.o \
  90. utils.o \
  91. xtea.o \
  92. OBJS-$(CONFIG_LZO) += lzo.o
  93. OBJS += $(COMPAT_OBJS:%=../compat/%)
  94. SKIPHEADERS = old_pix_fmts.h
  95. TESTPROGS = adler32 \
  96. aes \
  97. atomic \
  98. avstring \
  99. base64 \
  100. blowfish \
  101. cpu \
  102. crc \
  103. des \
  104. eval \
  105. fifo \
  106. hmac \
  107. lfg \
  108. lls \
  109. md5 \
  110. opt \
  111. parseutils \
  112. sha \
  113. tree \
  114. xtea \