git.videolan.org
/
ffmpeg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
mxf aes decryption support, patch by Reimar, simplified to only look for first crypto...
[ffmpeg.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
random.o \
21
aes.o \
22
23
HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
24
intfloat_readwrite.h md5.h adler32.h log.h fifo.h lzo.h \
25
random.h
26
27
NAME=avutil
28
ifeq ($(BUILD_SHARED),yes)
29
LIBVERSION=$(LAVUVERSION)
30
LIBMAJOR=$(LAVUMAJOR)
31
endif
32
33
include ../common.mak