Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
ROOT=..
2
include ../Make.config
3
LIB=libsec.a
4
 
5
OFILES=\
6
	aes.$O\
7
	blowfish.$O\
8
	decodepem.$O\
9
	des.$O\
10
	des3CBC.$O\
11
	des3ECB.$O\
12
	desCBC.$O\
13
	desECB.$O\
14
	desmodes.$O\
15
	dsaalloc.$O\
16
	dsagen.$O\
17
	dsaprimes.$O\
18
	dsaprivtopub.$O\
19
	dsasign.$O\
20
	dsaverify.$O\
21
	egalloc.$O\
22
	egdecrypt.$O\
23
	egencrypt.$O\
24
	eggen.$O\
25
	egprivtopub.$O\
26
	egsign.$O\
27
	egverify.$O\
28
	fastrand.$O\
29
	genprime.$O\
30
	genrandom.$O\
31
	gensafeprime.$O\
32
	genstrongprime.$O\
33
	hmac.$O\
34
	md4.$O\
35
	md5.$O\
36
	md5pickle.$O\
37
	nfastrand.$O\
38
	prng.$O\
39
	probably_prime.$O\
40
	rc4.$O\
41
	rsaalloc.$O\
42
	rsadecrypt.$O\
43
	rsaencrypt.$O\
44
	rsafill.$O\
45
	rsagen.$O\
46
	rsaprivtopub.$O\
47
	sha1.$O\
48
	sha1pickle.$O\
49
	smallprimes.$O
50
 
51
default: $(LIB)
52
$(LIB): $(OFILES)
53
	$(AR) r $(LIB) $(OFILES)
54
	$(RANLIB) $(LIB)
55
 
56
%.$O: %.c
57
	$(CC) $(CFLAGS) $*.c
58