Makefile 4.5 KB

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