Makefile 5.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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 avstring base64 cpu crc des eval file fifo lfg lls \
  75. md5 opt pca parseutils rational sha tree
  76. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  77. DIRS = arm bfin sh4 x86
  78. ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h
  79. include $(SRC_PATH)/subdir.mak
  80. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2