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.

30 lines
612B

  1. #
  2. # libavutil Makefile
  3. #
  4. include ../config.mak
  5. CFLAGS=-DHAVE_AV_CONFIG_H -DBUILD_AVUTIL -I$(BUILD_ROOT) $(OPTFLAGS) \
  6. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE
  7. OBJS= mathematics.o \
  8. rational.o \
  9. intfloat_readwrite.o \
  10. crc.o \
  11. md5.o \
  12. lls.o \
  13. adler32.o \
  14. log.o \
  15. mem.o \
  16. fifo.o \
  17. HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
  18. intfloat_readwrite.h md5.h adler32.h log.h fifo.h
  19. NAME=avutil
  20. ifeq ($(BUILD_SHARED),yes)
  21. LIBVERSION=$(LAVUVERSION)
  22. LIBMAJOR=$(LAVUMAJOR)
  23. endif
  24. include $(SRC_PATH)/common.mak