Mercurial > libavutil.hg
annotate Makefile @ 495:774adf4fb537 libavutil
Ignore dependency files.
author | diego |
---|---|
date | Sat, 12 Apr 2008 16:22:13 +0000 |
parents | 34640f2e3060 |
children | e0bae6a64cc7 |
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 \ | |
267
d363937cc410
Reverting stray commit part II, r8156 had the base64 export patch mixed with the nutdec patch
lu_zero
parents:
diff
changeset
|
24 |
381 | 25 HEADERS = adler32.h \ |
26 avstring.h \ | |
27 avutil.h \ | |
28 base64.h \ | |
29 common.h \ | |
421 | 30 crc.h \ |
381 | 31 fifo.h \ |
32 intfloat_readwrite.h \ | |
33 log.h \ | |
34 lzo.h \ | |
35 mathematics.h \ | |
36 md5.h \ | |
37 mem.h \ | |
38 random.h \ | |
39 rational.h \ | |
406 | 40 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
|
41 |
437
8a1687cc6f5b
Move some lines in preparation for an upcoming commit.
diego
parents:
436
diff
changeset
|
42 TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 sha1 softfloat tree) |
436 | 43 |
491 | 44 include $(SUBDIR)../subdir.mak |
436 | 45 |
491 | 46 $(SUBDIR)lzo-test$(EXESUF): EXTRALIBS += -llzo2 |
436 | 47 |
491 | 48 CLEANFILES = lzo-test$(EXESUF) |