mirror of https://github.com/FFmpeg/FFmpeg.git
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.
23 lines
514 B
23 lines
514 B
# |
|
# libavutil Makefile |
|
# |
|
include ../config.mak |
|
|
|
# NOTE: -I.. is needed to include config.h |
|
CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -DBUILD_AVUTIL -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE |
|
|
|
OBJS= mathematics.o \ |
|
rational.o \ |
|
intfloat_readwrite.o \ |
|
crc.o \ |
|
|
|
HEADERS = avutil.h common.h mathematics.h integer.h rational.h \ |
|
intfloat_readwrite.h |
|
|
|
NAME=avutil |
|
ifeq ($(BUILD_SHARED),yes) |
|
LIBVERSION=$(LAVUVERSION) |
|
LIBMAJOR=$(LAVUMAJOR) |
|
endif |
|
|
|
include $(SRC_PATH)/common.mak
|
|
|