Mercurial > libavutil.hg
annotate Makefile @ 721:75c89362a6b1 libavutil
Fix lzo-test linking: -llzo2 should be in ELIBS, not EXTRALIBS.
author | diego |
---|---|
date | Thu, 02 Apr 2009 22:41:58 +0000 |
parents | 2f9c4e9ae095 |
children | db9e213fcc5b |
rev | line source |
---|---|
491 | 1 include $(SUBDIR)../config.mak |
267
d363937cc410
Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff
changeset
|
2 |
463
fc4239d967ce
cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.
diego
parents:
462
diff
changeset
|
3 NAME = avutil |
fc4239d967ce
cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.
diego
parents:
462
diff
changeset
|
4 |
587
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
5 HEADERS = adler32.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
6 avstring.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
7 avutil.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
8 base64.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
9 common.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
10 crc.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
11 fifo.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
12 intfloat_readwrite.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
13 log.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
14 lzo.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
15 mathematics.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
16 md5.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
17 mem.h \ |
671
e847c4a1d29a
Split avutil.h, move all the pixel format definitions to the new
stefano
parents:
654
diff
changeset
|
18 pixfmt.h \ |
587
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
19 rational.h \ |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
20 sha1.h |
53b9b303d6d5
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
diego
parents:
584
diff
changeset
|
21 |
584 | 22 OBJS = adler32.o \ |
23 aes.o \ | |
638
ccbcf7872a78
Rename string.c to avstring.c so that the name of header and C file match.
diego
parents:
601
diff
changeset
|
24 avstring.o \ |
584 | 25 base64.o \ |
26 crc.o \ | |
27 des.o \ | |
28 fifo.o \ | |
29 intfloat_readwrite.o \ | |
30 lfg.o \ | |
31 lls.o \ | |
32 log.o \ | |
33 lzo.o \ | |
34 mathematics.o \ | |
35 md5.o \ | |
36 mem.o \ | |
678
bcd0e6fe83d8
add ff_random_get_seed to be used in conjunction with random functions
bcoudurier
parents:
671
diff
changeset
|
37 random_seed.o \ |
584 | 38 rational.o \ |
39 rc4.o \ | |
40 sha1.o \ | |
41 tree.o \ | |
42 utils.o \ | |
267
d363937cc410
Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff
changeset
|
43 |
712
245c43384890
Move adding the '-test$(EXESUF)' suffix to test programs into common.mak.
diego
parents:
709
diff
changeset
|
44 TESTPROGS = adler32 aes base64 crc des lls md5 pca sha1 softfloat tree |
436 | 45 |
601
b150276ce746
Extend 'checkheaders' target to architecture-specific subdirectories.
diego
parents:
587
diff
changeset
|
46 DIRS = arm bfin sh4 x86 |
b150276ce746
Extend 'checkheaders' target to architecture-specific subdirectories.
diego
parents:
587
diff
changeset
|
47 |
491 | 48 include $(SUBDIR)../subdir.mak |
436 | 49 |
721
75c89362a6b1
Fix lzo-test linking: -llzo2 should be in ELIBS, not EXTRALIBS.
diego
parents:
713
diff
changeset
|
50 $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2 |