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.

31 lines
644B

  1. #
  2. # libavutil Makefile
  3. #
  4. include ../config.mak
  5. # NOTE: -I.. is needed to include config.h
  6. CFLAGS=-DHAVE_AV_CONFIG_H -DBUILD_AVUTIL -I.. $(OPTFLAGS) \
  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. lls.o \
  14. adler32.o \
  15. log.o \
  16. mem.o \
  17. fifo.o \
  18. HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
  19. intfloat_readwrite.h md5.h adler32.h log.h fifo.h
  20. NAME=avutil
  21. ifeq ($(BUILD_SHARED),yes)
  22. LIBVERSION=$(LAVUVERSION)
  23. LIBMAJOR=$(LAVUMAJOR)
  24. endif
  25. include $(SRC_PATH)/common.mak