]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
a96e4c0968779b3e41ba15104b27c54313d8861f
[ffmpeg] / libavutil / Makefile
1 #
2 # libavutil Makefile
3 #
4 include ../config.mak
5
6 CFLAGS+=-DBUILD_AVUTIL
7
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
19 HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
20           intfloat_readwrite.h md5.h adler32.h log.h fifo.h
21
22 NAME=avutil
23 ifeq ($(BUILD_SHARED),yes)
24 LIBVERSION=$(LAVUVERSION)
25 LIBMAJOR=$(LAVUMAJOR)
26 endif
27
28 include ../common.mak