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.

88 lines
5.1KB

  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_readwrite.h \
  21. intreadwrite.h \
  22. lfg.h \
  23. log.h \
  24. lzo.h \
  25. mathematics.h \
  26. md5.h \
  27. mem.h \
  28. opt.h \
  29. parseutils.h \
  30. pixdesc.h \
  31. pixfmt.h \
  32. random_seed.h \
  33. rational.h \
  34. samplefmt.h \
  35. sha.h \
  36. BUILT_HEADERS = avconfig.h
  37. OBJS = adler32.o \
  38. aes.o \
  39. audioconvert.o \
  40. avstring.o \
  41. base64.o \
  42. cpu.o \
  43. crc.o \
  44. des.o \
  45. error.o \
  46. eval.o \
  47. fifo.o \
  48. file.o \
  49. imgutils.o \
  50. intfloat_readwrite.o \
  51. inverse.o \
  52. lfg.o \
  53. lls.o \
  54. log.o \
  55. lzo.o \
  56. mathematics.o \
  57. md5.o \
  58. mem.o \
  59. opt.o \
  60. parseutils.o \
  61. pixdesc.o \
  62. random_seed.o \
  63. rational.o \
  64. rc4.o \
  65. samplefmt.o \
  66. sha.o \
  67. tree.o \
  68. utils.o \
  69. OBJS-$(ARCH_ARM) += arm/cpu.o
  70. OBJS-$(ARCH_PPC) += ppc/cpu.o
  71. OBJS-$(ARCH_X86) += x86/cpu.o
  72. TESTPROGS = adler32 aes base64 cpu crc des lls md5 pca sha softfloat tree
  73. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  74. DIRS = arm bfin sh4 x86
  75. ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h
  76. include $(SUBDIR)../subdir.mak
  77. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2