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.

95 lines
5.5KB

  1. include $(SUBDIR)../config.mak
  2. NAME = avutil
  3. HEADERS = adler32.h \
  4. aes.h \
  5. attributes.h \
  6. audioconvert.h \
  7. avassert.h \
  8. avstring.h \
  9. avutil.h \
  10. base64.h \
  11. bswap.h \
  12. common.h \
  13. cpu.h \
  14. crc.h \
  15. error.h \
  16. eval.h \
  17. fifo.h \
  18. file.h \
  19. imgutils.h \
  20. intfloat.h \
  21. intfloat_readwrite.h \
  22. intreadwrite.h \
  23. lfg.h \
  24. log.h \
  25. lzo.h \
  26. mathematics.h \
  27. md5.h \
  28. mem.h \
  29. dict.h \
  30. opt.h \
  31. parseutils.h \
  32. pixdesc.h \
  33. pixfmt.h \
  34. random_seed.h \
  35. rational.h \
  36. samplefmt.h \
  37. sha.h \
  38. timecode.h \
  39. BUILT_HEADERS = avconfig.h
  40. OBJS = adler32.o \
  41. aes.o \
  42. audioconvert.o \
  43. avstring.o \
  44. base64.o \
  45. cpu.o \
  46. crc.o \
  47. des.o \
  48. error.o \
  49. eval.o \
  50. fifo.o \
  51. file.o \
  52. imgutils.o \
  53. intfloat_readwrite.o \
  54. inverse.o \
  55. lfg.o \
  56. lls.o \
  57. log.o \
  58. lzo.o \
  59. mathematics.o \
  60. md5.o \
  61. mem.o \
  62. dict.o \
  63. opt.o \
  64. parseutils.o \
  65. pixdesc.o \
  66. random_seed.o \
  67. rational.o \
  68. rc4.o \
  69. samplefmt.o \
  70. sha.o \
  71. timecode.o \
  72. tree.o \
  73. utils.o \
  74. OBJS-$(ARCH_ARM) += arm/cpu.o
  75. OBJS-$(ARCH_PPC) += ppc/cpu.o
  76. OBJS-$(ARCH_X86) += x86/cpu.o
  77. TESTPROGS = adler32 aes avstring base64 cpu crc des eval file fifo lfg lls \
  78. md5 opt pca parseutils rational sha tree
  79. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  80. TOOLS = ffeval
  81. DIRS = arm bfin sh4 x86
  82. ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h
  83. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2