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.

74 lines
4.1KB

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