You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
941B

  1. include $(SUBDIR)../config.mak
  2. NAME = avutil
  3. OBJS = adler32.o \
  4. aes.o \
  5. base64.o \
  6. crc.o \
  7. des.o \
  8. fifo.o \
  9. intfloat_readwrite.o \
  10. lls.o \
  11. log.o \
  12. lzo.o \
  13. mathematics.o \
  14. md5.o \
  15. mem.o \
  16. random.o \
  17. rational.o \
  18. rc4.o \
  19. sha1.o \
  20. string.o \
  21. tree.o \
  22. utils.o \
  23. HEADERS = adler32.h \
  24. avstring.h \
  25. avutil.h \
  26. base64.h \
  27. common.h \
  28. crc.h \
  29. fifo.h \
  30. intfloat_readwrite.h \
  31. log.h \
  32. lzo.h \
  33. mathematics.h \
  34. md5.h \
  35. mem.h \
  36. random.h \
  37. rational.h \
  38. sha1.h
  39. TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 pca random sha1 softfloat tree)
  40. include $(SUBDIR)../subdir.mak
  41. $(SUBDIR)lzo-test$(EXESUF): EXTRALIBS += -llzo2
  42. CLEANFILES = lzo-test$(EXESUF)