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.

51 lines
2.9KB

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