ffmpeg / libavutil / Makefile @ b91d08f4
History | View | Annotate | Download (3.81 KB)
1 |
include $(SUBDIR)../config.mak |
---|---|
2 |
|
3 |
NAME = avutil |
4 |
|
5 |
HEADERS = adler32.h \ |
6 |
attributes.h \ |
7 |
avstring.h \ |
8 |
avutil.h \ |
9 |
base64.h \ |
10 |
bswap.h \ |
11 |
common.h \ |
12 |
crc.h \ |
13 |
error.h \ |
14 |
eval.h \ |
15 |
fifo.h \ |
16 |
intfloat_readwrite.h \ |
17 |
intreadwrite.h \ |
18 |
lfg.h \ |
19 |
log.h \ |
20 |
lzo.h \ |
21 |
mathematics.h \ |
22 |
md5.h \ |
23 |
mem.h \ |
24 |
pixdesc.h \ |
25 |
pixfmt.h \ |
26 |
random_seed.h \ |
27 |
rational.h \ |
28 |
sha1.h \ |
29 |
|
30 |
BUILT_HEADERS = avconfig.h |
31 |
|
32 |
OBJS = adler32.o \ |
33 |
aes.o \ |
34 |
avstring.o \ |
35 |
base64.o \ |
36 |
crc.o \ |
37 |
des.o \ |
38 |
error.o \ |
39 |
eval.o \ |
40 |
fifo.o \ |
41 |
intfloat_readwrite.o \ |
42 |
lfg.o \ |
43 |
lls.o \ |
44 |
log.o \ |
45 |
lzo.o \ |
46 |
mathematics.o \ |
47 |
md5.o \ |
48 |
mem.o \ |
49 |
pixdesc.o \ |
50 |
random_seed.o \ |
51 |
rational.o \ |
52 |
rc4.o \ |
53 |
sha.o \ |
54 |
tree.o \ |
55 |
utils.o \ |
56 |
|
57 |
TESTPROGS = adler32 aes base64 crc des lls md5 pca sha softfloat tree |
58 |
TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo |
59 |
|
60 |
DIRS = arm bfin sh4 x86 |
61 |
|
62 |
ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h |
63 |
|
64 |
include $(SUBDIR)../subdir.mak |
65 |
|
66 |
$(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2 |