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.

53 lines
995B

  1. include ../config.mak
  2. OBJS = adler32.o \
  3. aes.o \
  4. base64.o \
  5. crc.o \
  6. des.o \
  7. fifo.o \
  8. intfloat_readwrite.o \
  9. lls.o \
  10. log.o \
  11. lzo.o \
  12. mathematics.o \
  13. md5.o \
  14. mem.o \
  15. random.o \
  16. rational.o \
  17. rc4.o \
  18. sha1.o \
  19. string.o \
  20. tree.o \
  21. HEADERS = adler32.h \
  22. avstring.h \
  23. avutil.h \
  24. base64.h \
  25. common.h \
  26. crc.h \
  27. fifo.h \
  28. intfloat_readwrite.h \
  29. log.h \
  30. lzo.h \
  31. mathematics.h \
  32. md5.h \
  33. mem.h \
  34. random.h \
  35. rational.h \
  36. sha1.h
  37. NAME=avutil
  38. LIBVERSION=$(LAVUVERSION)
  39. LIBMAJOR=$(LAVUMAJOR)
  40. TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 sha1 softfloat tree)
  41. include ../common.mak
  42. lzo-test$(EXESUF): lzo.c $(LIBNAME)
  43. $(CC) $(CFLAGS) $(LDFLAGS) -DTEST -o $@ $^ $(EXTRALIBS) -llzo2
  44. clean::
  45. rm -f lzo-test$(EXESUF)