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.

27 lines
572B

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