ffmpeg / libavutil / Makefile @ 94d85eaf
History | View | Annotate | Download (514 Bytes)
1 | c11c2bc2 | Alexander Strasser | # |
---|---|---|---|
2 | # libavutil Makefile |
||
3 | # |
||
4 | include ../config.mak |
||
5 | |||
6 | # NOTE: -I.. is needed to include config.h |
||
7 | 320d060a | Diego Biurrun | CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -DBUILD_AVUTIL -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE |
8 | c11c2bc2 | Alexander Strasser | |
9 | OBJS= mathematics.o \ |
||
10 | rational.o \ |
||
11 | intfloat_readwrite.o \ |
||
12 | 43a80cce | Michael Niedermayer | crc.o \ |
13 | c11c2bc2 | Alexander Strasser | |
14 | 8b2121e3 | Måns Rullgård | HEADERS = avutil.h common.h mathematics.h integer.h rational.h \ |
15 | intfloat_readwrite.h |
||
16 | c11c2bc2 | Alexander Strasser | |
17 | 4bdd05e7 | Diego Biurrun | NAME=avutil |
18 | c11c2bc2 | Alexander Strasser | ifeq ($(BUILD_SHARED),yes) |
19 | f3b60109 | Diego Biurrun | LIBVERSION=$(LAVUVERSION) |
20 | LIBMAJOR=$(LAVUMAJOR) |
||
21 | c11c2bc2 | Alexander Strasser | endif |
22 | |||
23 | 8b2121e3 | Måns Rullgård | include $(SRC_PATH)/common.mak |