Makefile 5.3 KB

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