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.

26 lines
543B

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