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.

29 lines
497B

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