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.

31 lines
523B

  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. HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
  19. intfloat_readwrite.h md5.h adler32.h log.h fifo.h lzo.h
  20. NAME=avutil
  21. ifeq ($(BUILD_SHARED),yes)
  22. LIBVERSION=$(LAVUVERSION)
  23. LIBMAJOR=$(LAVUMAJOR)
  24. endif
  25. include ../common.mak