Makefile 5.3 KB

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