]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/seed/Makefile
STACK_OF(SSL_COMP) is a public type
[thirdparty/openssl.git] / crypto / seed / Makefile
CommitLineData
96afc1cf
BM
1#
2# crypto/seed/Makefile
3#
4
5DIR= seed
6TOP= ../..
7CC= cc
8CPP= $(CC) -E
9INCLUDES=
10CFLAG=-g
11MAKEFILE= Makefile
12AR= ar r
13
14CFLAGS= $(INCLUDES) $(CFLAG)
15
16GENERAL=Makefile
96afc1cf
BM
17
18LIB=$(TOP)/libcrypto.a
19LIBSRC=seed.c seed_ecb.c seed_cbc.c seed_cfb.c seed_ofb.c
20LIBOBJ=seed.o seed_ecb.o seed_cbc.o seed_cfb.o seed_ofb.o
21
22SRC= $(LIBSRC)
23
a80e33b9 24HEADER= seed_locl.h
96afc1cf
BM
25
26ALL= $(GENERAL) $(SRC) $(HEADER)
27
28top:
29 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
30
31all: lib
32
33lib: $(LIBOBJ)
f072785e 34 $(AR) $(LIB) $(LIBOBJ)
96afc1cf
BM
35 $(RANLIB) $(LIB) || echo Never mind.
36 @touch lib
37
38files:
39 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
40
96afc1cf
BM
41tags:
42 ctags $(SRC)
43
44tests:
45
46lint:
47 lint -DLINT $(INCLUDES) $(SRC)>fluff
48
0f539dc1
RL
49update: depend
50
96afc1cf
BM
51depend:
52 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
53 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
54
55dclean:
56 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
57 mv -f Makefile.new $(MAKEFILE)
58
59clean:
60 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
61
62# DO NOT DELETE THIS LINE -- make depend depends on it.
63
9311c442
BL
64seed.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
65seed.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
66seed.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
67seed.o: ../../include/openssl/seed.h ../../include/openssl/stack.h
68seed.o: ../../include/openssl/symhacks.h seed.c seed_locl.h
69seed_cbc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
5d48a66a 70seed_cbc.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
9311c442
BL
71seed_cbc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
72seed_cbc.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
73seed_cbc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
5d48a66a 74seed_cbc.o: seed_cbc.c
9311c442 75seed_cfb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
5d48a66a 76seed_cfb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
9311c442
BL
77seed_cfb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
78seed_cfb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
79seed_cfb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
5d48a66a 80seed_cfb.o: seed_cfb.c
9311c442
BL
81seed_ecb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
82seed_ecb.o: ../../include/openssl/opensslconf.h
83seed_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
84seed_ecb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
85seed_ecb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
96afc1cf 86seed_ecb.o: seed_ecb.c
9311c442 87seed_ofb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
5d48a66a 88seed_ofb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
9311c442
BL
89seed_ofb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
90seed_ofb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
91seed_ofb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
5d48a66a 92seed_ofb.o: seed_ofb.c