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.

131 lines
8.4KB

  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. frame.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. version.h \
  45. xtea.h \
  46. HEADERS-$(CONFIG_LZO) += lzo.h
  47. ARCH_HEADERS = bswap.h \
  48. intmath.h \
  49. intreadwrite.h \
  50. timer.h \
  51. BUILT_HEADERS = avconfig.h
  52. OBJS = adler32.o \
  53. aes.o \
  54. atomic.o \
  55. audio_fifo.o \
  56. avstring.o \
  57. base64.o \
  58. blowfish.o \
  59. buffer.o \
  60. channel_layout.o \
  61. cpu.o \
  62. crc.o \
  63. des.o \
  64. error.o \
  65. eval.o \
  66. fifo.o \
  67. file.o \
  68. file_open.o \
  69. float_dsp.o \
  70. frame.o \
  71. hmac.o \
  72. imgutils.o \
  73. intfloat_readwrite.o \
  74. intmath.o \
  75. lfg.o \
  76. lls.o \
  77. log.o \
  78. log2_tab.o \
  79. mathematics.o \
  80. md5.o \
  81. mem.o \
  82. dict.o \
  83. opt.o \
  84. parseutils.o \
  85. pixdesc.o \
  86. random_seed.o \
  87. rational.o \
  88. rc4.o \
  89. samplefmt.o \
  90. sha.o \
  91. time.o \
  92. tree.o \
  93. utils.o \
  94. xtea.o \
  95. OBJS-$(CONFIG_LZO) += lzo.o
  96. OBJS += $(COMPAT_OBJS:%=../compat/%)
  97. SKIPHEADERS = old_pix_fmts.h
  98. SKIPHEADERS-$(HAVE_ATOMICS_GCC) += atomic_gcc.h
  99. SKIPHEADERS-$(HAVE_ATOMICS_SUNCC) += atomic_suncc.h
  100. SKIPHEADERS-$(HAVE_ATOMICS_WIN32) += atomic_win32.h
  101. TESTPROGS = adler32 \
  102. aes \
  103. atomic \
  104. avstring \
  105. base64 \
  106. blowfish \
  107. cpu \
  108. crc \
  109. des \
  110. eval \
  111. fifo \
  112. hmac \
  113. lfg \
  114. lls \
  115. md5 \
  116. opt \
  117. parseutils \
  118. sha \
  119. tree \
  120. xtea \