]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
AVL tree
[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       tree.o \
19
20 HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
21           intfloat_readwrite.h md5.h adler32.h log.h fifo.h
22
23 NAME=avutil
24 ifeq ($(BUILD_SHARED),yes)
25 LIBVERSION=$(LAVUVERSION)
26 LIBMAJOR=$(LAVUMAJOR)
27 endif
28
29 include ../common.mak