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