Makefile 3.3 KB

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