Makefile 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. bprint.h \
  13. bswap.h \
  14. common.h \
  15. cpu.h \
  16. crc.h \
  17. error.h \
  18. eval.h \
  19. fifo.h \
  20. file.h \
  21. imgutils.h \
  22. intfloat.h \
  23. intfloat_readwrite.h \
  24. intreadwrite.h \
  25. lfg.h \
  26. log.h \
  27. lzo.h \
  28. mathematics.h \
  29. md5.h \
  30. mem.h \
  31. dict.h \
  32. opt.h \
  33. parseutils.h \
  34. pixdesc.h \
  35. pixfmt.h \
  36. random_seed.h \
  37. rational.h \
  38. samplefmt.h \
  39. sha.h \
  40. timecode.h \
  41. timestamp.h \
  42. ARCH_HEADERS = bswap.h \
  43. intmath.h \
  44. intreadwrite.h \
  45. timer.h \
  46. BUILT_HEADERS = avconfig.h
  47. OBJS = adler32.o \
  48. aes.o \
  49. audio_fifo.o \
  50. audioconvert.o \
  51. avstring.o \
  52. base64.o \
  53. bprint.o \
  54. cpu.o \
  55. crc.o \
  56. des.o \
  57. error.o \
  58. eval.o \
  59. fifo.o \
  60. file.o \
  61. imgutils.o \
  62. intfloat_readwrite.o \
  63. inverse.o \
  64. lfg.o \
  65. lls.o \
  66. log.o \
  67. lzo.o \
  68. mathematics.o \
  69. md5.o \
  70. mem.o \
  71. dict.o \
  72. opt.o \
  73. parseutils.o \
  74. pixdesc.o \
  75. random_seed.o \
  76. rational.o \
  77. rc4.o \
  78. samplefmt.o \
  79. sha.o \
  80. timecode.o \
  81. tree.o \
  82. utils.o \
  83. TESTPROGS = adler32 \
  84. aes \
  85. avstring \
  86. base64 \
  87. bprint \
  88. cpu \
  89. crc \
  90. des \
  91. eval \
  92. file \
  93. fifo \
  94. lfg \
  95. lls \
  96. md5 \
  97. opt \
  98. pca \
  99. parseutils \
  100. random_seed \
  101. rational \
  102. sha \
  103. tree \
  104. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  105. TOOLS = ffeval
  106. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2