Makefile 4.3 KB

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