Mercurial > libavutil.hg
annotate Makefile @ 560:bfda08477f66 libavutil
restore alphabetical order of TESTS
author | michael |
---|---|
date | Sun, 17 Aug 2008 16:58:47 +0000 |
parents | 8f2543157b75 |
children | 2cf4494e7c84 |
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 |
381 | 5 OBJS = adler32.o \ |
6 aes.o \ | |
7 base64.o \ | |
8 crc.o \ | |
393 | 9 des.o \ |
385 | 10 fifo.o \ |
381 | 11 intfloat_readwrite.o \ |
12 lls.o \ | |
13 log.o \ | |
14 lzo.o \ | |
15 mathematics.o \ | |
16 md5.o \ | |
17 mem.o \ | |
18 random.o \ | |
19 rational.o \ | |
384 | 20 rc4.o \ |
406 | 21 sha1.o \ |
381 | 22 string.o \ |
23 tree.o \ | |
545 | 24 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
|
25 |
381 | 26 HEADERS = adler32.h \ |
27 avstring.h \ | |
28 avutil.h \ | |
29 base64.h \ | |
30 common.h \ | |
421 | 31 crc.h \ |
381 | 32 fifo.h \ |
33 intfloat_readwrite.h \ | |
34 log.h \ | |
35 lzo.h \ | |
36 mathematics.h \ | |
37 md5.h \ | |
38 mem.h \ | |
39 random.h \ | |
40 rational.h \ | |
406 | 41 sha1.h |
267
d363937cc410
Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff
changeset
|
42 |
560 | 43 TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 pca random sha1 softfloat tree) |
436 | 44 |
491 | 45 include $(SUBDIR)../subdir.mak |
436 | 46 |
491 | 47 $(SUBDIR)lzo-test$(EXESUF): EXTRALIBS += -llzo2 |
436 | 48 |
491 | 49 CLEANFILES = lzo-test$(EXESUF) |