Mercurial > libavutil.hg
annotate Makefile @ 563:daccf2fe1053 libavutil
Copy and paste LGPL from tree.h, the previous one referred to a non-existing
version.
author | michael |
---|---|
date | Sun, 17 Aug 2008 19:32:51 +0000 |
parents | 2cf4494e7c84 |
children | 1edaa4382343 |
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 \ |
561 | 12 lfg.o \ |
381 | 13 lls.o \ |
14 log.o \ | |
15 lzo.o \ | |
16 mathematics.o \ | |
17 md5.o \ | |
18 mem.o \ | |
19 random.o \ | |
20 rational.o \ | |
384 | 21 rc4.o \ |
406 | 22 sha1.o \ |
381 | 23 string.o \ |
24 tree.o \ | |
545 | 25 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
|
26 |
381 | 27 HEADERS = adler32.h \ |
28 avstring.h \ | |
29 avutil.h \ | |
30 base64.h \ | |
31 common.h \ | |
421 | 32 crc.h \ |
381 | 33 fifo.h \ |
34 intfloat_readwrite.h \ | |
35 log.h \ | |
36 lzo.h \ | |
37 mathematics.h \ | |
38 md5.h \ | |
39 mem.h \ | |
40 random.h \ | |
41 rational.h \ | |
406 | 42 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
|
43 |
560 | 44 TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 pca random sha1 softfloat tree) |
436 | 45 |
491 | 46 include $(SUBDIR)../subdir.mak |
436 | 47 |
491 | 48 $(SUBDIR)lzo-test$(EXESUF): EXTRALIBS += -llzo2 |
436 | 49 |
491 | 50 CLEANFILES = lzo-test$(EXESUF) |