projects
/
libav.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Move lzo decompression to libavutil
[libav.git]
/
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
lzo.o \
20
21
HEADERS
=
avutil.h common.h mathematics.h integer.h rational.h \
22
intfloat_readwrite.h md5.h adler32.h log.h fifo.h lzo.h
23
24
NAME
=
avutil
25
ifeq
($(
BUILD_SHARED
),
yes
)
26
LIBVERSION
=$(
LAVUVERSION
)
27
LIBMAJOR
=$(
LAVUMAJOR
)
28
endif
29
30
include
..
/
common.mak