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.

76 lines
4.3KB

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