summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rand
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2002-09-05 12:51:53 +0000
committercvs2svn <admin@example.com>2002-09-05 12:51:53 +0000
commitd6e0927a98d2b936d171fcdf2ac1c56b694a3705 (patch)
treec76a93032161bb7aba600dc59798f7100c8ff8eb /src/lib/libcrypto/rand
parent5514995a9d5ed91db089875adb509c7781357c0e (diff)
downloadopenbsd-OPENSSL_0_9_7_BETA1.tar.gz
openbsd-OPENSSL_0_9_7_BETA1.tar.bz2
openbsd-OPENSSL_0_9_7_BETA1.zip
This commit was manufactured by cvs2git to create tag 'OPENSSL_0_9_7_BETA1'.OPENSSL_0_9_7_BETA1
Diffstat (limited to 'src/lib/libcrypto/rand')
-rw-r--r--src/lib/libcrypto/rand/Makefile.ssl157
1 files changed, 157 insertions, 0 deletions
diff --git a/src/lib/libcrypto/rand/Makefile.ssl b/src/lib/libcrypto/rand/Makefile.ssl
new file mode 100644
index 0000000000..ccf65f0d78
--- /dev/null
+++ b/src/lib/libcrypto/rand/Makefile.ssl
@@ -0,0 +1,157 @@
1#
2# SSLeay/crypto/rand/Makefile
3#
4
5DIR= rand
6TOP= ../..
7CC= cc
8INCLUDES=
9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl
14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16MAKEFILE= Makefile.ssl
17AR= ar r
18
19CFLAGS= $(INCLUDES) $(CFLAG)
20
21GENERAL=Makefile
22TEST= randtest.c
23APPS=
24
25LIB=$(TOP)/libcrypto.a
26LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \
27 rand_win.c rand_unix.c rand_os2.c
28LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \
29 rand_win.o rand_unix.o rand_os2.o
30
31SRC= $(LIBSRC)
32
33EXHEADER= rand.h
34HEADER= $(EXHEADER)
35
36ALL= $(GENERAL) $(SRC) $(HEADER)
37
38top:
39 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40
41all: lib
42
43lib: $(LIBOBJ)
44 $(AR) $(LIB) $(LIBOBJ)
45 $(RANLIB) $(LIB) || echo Never mind.
46 @touch lib
47
48files:
49 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
50
51links:
52 @$(TOP)/util/point.sh Makefile.ssl Makefile
53 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
54 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
55 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
56
57install:
58 @for i in $(EXHEADER) ; \
59 do \
60 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
61 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
62 done;
63
64tags:
65 ctags $(SRC)
66
67tests:
68
69lint:
70 lint -DLINT $(INCLUDES) $(SRC)>fluff
71
72depend:
73 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
74
75dclean:
76 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
77 mv -f Makefile.new $(MAKEFILE)
78
79clean:
80 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
81
82# DO NOT DELETE THIS LINE -- make depend depends on it.
83
84md_rand.o: ../../e_os.h ../../include/openssl/asn1.h
85md_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
86md_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
87md_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h
88md_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
89md_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
90md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
91md_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
92md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
93md_rand.o: ../../include/openssl/symhacks.h md_rand.c rand_lcl.h
94rand_egd.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
95rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
96rand_egd.o: rand_egd.c
97rand_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
98rand_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
99rand_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
100rand_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
101rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
102rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
103rand_err.o: rand_err.c
104rand_lib.o: ../../e_os.h ../../include/openssl/asn1.h
105rand_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
106rand_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
107rand_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
108rand_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h
109rand_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
110rand_lib.o: ../../include/openssl/opensslconf.h
111rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
112rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
113rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
114rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
115rand_lib.o: ../cryptlib.h rand_lib.c
116rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h
117rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
118rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
119rand_os2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
120rand_os2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
121rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
122rand_os2.o: ../../include/openssl/opensslconf.h
123rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
124rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
125rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
126rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
127rand_os2.o: rand_os2.c
128rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h
129rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
130rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
131rand_unix.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
132rand_unix.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
133rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
134rand_unix.o: ../../include/openssl/opensslconf.h
135rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
136rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
137rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
138rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
139rand_unix.o: rand_unix.c
140rand_win.o: ../../e_os.h ../../include/openssl/asn1.h
141rand_win.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
142rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
143rand_win.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
144rand_win.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
145rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
146rand_win.o: ../../include/openssl/opensslconf.h
147rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
148rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
149rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
150rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
151rand_win.o: rand_win.c
152randfile.o: ../../e_os.h ../../include/openssl/crypto.h
153randfile.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
154randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
155randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
156randfile.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
157randfile.o: randfile.c