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.

24 lines
514B

  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.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
  7. OBJS= mathematics.o \
  8. rational.o \
  9. intfloat_readwrite.o \
  10. crc.o \
  11. HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
  12. intfloat_readwrite.h
  13. NAME=avutil
  14. ifeq ($(BUILD_SHARED),yes)
  15. LIBVERSION=$(LAVUVERSION)
  16. LIBMAJOR=$(LAVUMAJOR)
  17. endif
  18. include $(SRC_PATH)/common.mak