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.

35 lines
592B

  1. #
  2. # libavutil Makefile
  3. #
  4. include ../config.mak
  5. CFLAGS+=-DBUILD_AVUTIL
  6. OBJS= mathematics.o \
  7. rational.o \
  8. intfloat_readwrite.o \
  9. crc.o \
  10. md5.o \
  11. lls.o \
  12. adler32.o \
  13. log.o \
  14. mem.o \
  15. fifo.o \
  16. tree.o \
  17. lzo.o \
  18. random.o \
  19. aes.o \
  20. base64.o \
  21. HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
  22. intfloat_readwrite.h md5.h adler32.h log.h fifo.h lzo.h \
  23. random.h
  24. NAME=avutil
  25. ifeq ($(BUILD_SHARED),yes)
  26. LIBVERSION=$(LAVUVERSION)
  27. LIBMAJOR=$(LAVUMAJOR)
  28. endif
  29. include ../common.mak