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.

87 lines
5.1KB

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