Makefile 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. include $(SUBDIR)../config.mak
  2. NAME = avutil
  3. HEADERS = adler32.h \
  4. avstring.h \
  5. avutil.h \
  6. base64.h \
  7. common.h \
  8. crc.h \
  9. fifo.h \
  10. intfloat_readwrite.h \
  11. log.h \
  12. lzo.h \
  13. mathematics.h \
  14. md5.h \
  15. mem.h \
  16. pixdesc.h \
  17. pixfmt.h \
  18. rational.h \
  19. sha1.h \
  20. BUILT_HEADERS = avconfig.h
  21. OBJS = adler32.o \
  22. aes.o \
  23. avstring.o \
  24. base64.o \
  25. crc.o \
  26. des.o \
  27. fifo.o \
  28. intfloat_readwrite.o \
  29. lfg.o \
  30. lls.o \
  31. log.o \
  32. lzo.o \
  33. mathematics.o \
  34. md5.o \
  35. mem.o \
  36. pixdesc.o \
  37. random_seed.o \
  38. rational.o \
  39. rc4.o \
  40. sha.o \
  41. tree.o \
  42. utils.o \
  43. TESTPROGS = adler32 aes base64 crc des lls md5 pca sha softfloat tree
  44. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  45. DIRS = arm bfin sh4 x86
  46. include $(SUBDIR)../subdir.mak
  47. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2