Makefile 8.3 KB

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