make update
[openssl.git] / fips / rand / Makefile
1 #
2 # OpenSSL/fips/rand/Makefile
3 #
4
5 DIR=    rand
6 TOP=    ../..
7 CC=     cc
8 INCLUDES=
9 CFLAG=-g
10 INSTALL_PREFIX=
11 OPENSSLDIR=     /usr/local/ssl
12 INSTALLTOP=/usr/local/ssl
13 MAKEDEPPROG=    makedepend
14 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
15 MAKEFILE=       Makefile
16 AR=             ar r
17
18 CFLAGS= $(INCLUDES) $(CFLAG)
19
20 GENERAL=Makefile
21 TEST= fips_randtest.c fips_rngvs.c fips_drbgvs.c
22 APPS=
23
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC= fips_rand.c fips_rand_selftest.c \
26         fips_drbg_lib.c fips_drbg_hash.c fips_drbg_ctr.c fips_drbg_selftest.c
27 LIBOBJ= fips_rand.o fips_rand_selftest.o \
28         fips_drbg_lib.o fips_drbg_hash.o fips_drbg_ctr.o fips_drbg_selftest.o
29
30 SRC= $(LIBSRC)
31
32 EXHEADER= fips_rand.h
33 HEADER= $(EXHEADER) fips_rand_lcl.h
34
35 ALL=    $(GENERAL) $(SRC) $(HEADER)
36
37 top:
38         (cd $(TOP); $(MAKE) DIRS=fips SDIRS=$(DIR) sub_all)
39
40 all:    lib
41
42 lib:    $(LIBOBJ)
43         @echo $(LIBOBJ) > lib
44
45 files:
46         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
47
48 links:
49         @$(PERL) $(TOP)/util/mklink.pl $(TOP)/include/openssl $(EXHEADER)
50         @$(PERL) $(TOP)/util/mklink.pl $(TOP)/test $(TEST)
51         @$(PERL) $(TOP)/util/mklink.pl $(TOP)/apps $(APPS)
52
53 install:
54         @headerlist="$(EXHEADER)"; for i in $$headerlist; \
55         do \
56           (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
57           chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
58         done
59
60 tags:
61         ctags $(SRC)
62
63 tests:
64
65 Q=../testvectors/rng/req
66 A=../testvectors/rng/rsp
67
68 fips_test:
69         -rm -rf $(A)
70         mkdir $(A)
71         if [ -f $(Q)/ANSI931_AES128MCT.req ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_rngvs mct < $(Q)/ANSI931_AES128MCT.req > $(A)/ANSI931_AES128MCT.rsp; fi
72         if [ -f $(Q)/ANSI931_AES192MCT.req ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_rngvs mct < $(Q)/ANSI931_AES192MCT.req > $(A)/ANSI931_AES192MCT.rsp; fi
73         if [ -f $(Q)/ANSI931_AES256MCT.req ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_rngvs mct < $(Q)/ANSI931_AES256MCT.req > $(A)/ANSI931_AES256MCT.rsp; fi
74         if [ -f $(Q)/ANSI931_AES128VST.req ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_rngvs vst < $(Q)/ANSI931_AES128VST.req > $(A)/ANSI931_AES128VST.rsp; fi
75         if [ -f $(Q)/ANSI931_AES192VST.req ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_rngvs vst < $(Q)/ANSI931_AES192VST.req > $(A)/ANSI931_AES192VST.rsp; fi
76         if [ -f $(Q)/ANSI931_AES256VST.req ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_rngvs vst < $(Q)/ANSI931_AES256VST.req > $(A)/ANSI931_AES256VST.rsp; fi
77
78 lint:
79         lint -DLINT $(INCLUDES) $(SRC)>fluff
80
81 depend:
82         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(SRC) $(TEST)
83
84 dclean:
85         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
86         mv -f Makefile.new $(MAKEFILE)
87
88 clean:
89         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
90
91 # DO NOT DELETE THIS LINE -- make depend depends on it.
92
93 fips_drbg_ctr.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
94 fips_drbg_ctr.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
95 fips_drbg_ctr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
96 fips_drbg_ctr.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
97 fips_drbg_ctr.o: ../../include/openssl/fips.h ../../include/openssl/fips_rand.h
98 fips_drbg_ctr.o: ../../include/openssl/obj_mac.h
99 fips_drbg_ctr.o: ../../include/openssl/objects.h
100 fips_drbg_ctr.o: ../../include/openssl/opensslconf.h
101 fips_drbg_ctr.o: ../../include/openssl/opensslv.h
102 fips_drbg_ctr.o: ../../include/openssl/ossl_typ.h
103 fips_drbg_ctr.o: ../../include/openssl/safestack.h
104 fips_drbg_ctr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
105 fips_drbg_ctr.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
106 fips_drbg_ctr.o: fips_drbg_ctr.c fips_rand_lcl.h
107 fips_drbg_hash.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
108 fips_drbg_hash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
109 fips_drbg_hash.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
110 fips_drbg_hash.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
111 fips_drbg_hash.o: ../../include/openssl/fips.h
112 fips_drbg_hash.o: ../../include/openssl/fips_rand.h
113 fips_drbg_hash.o: ../../include/openssl/obj_mac.h
114 fips_drbg_hash.o: ../../include/openssl/objects.h
115 fips_drbg_hash.o: ../../include/openssl/opensslconf.h
116 fips_drbg_hash.o: ../../include/openssl/opensslv.h
117 fips_drbg_hash.o: ../../include/openssl/ossl_typ.h
118 fips_drbg_hash.o: ../../include/openssl/safestack.h
119 fips_drbg_hash.o: ../../include/openssl/stack.h
120 fips_drbg_hash.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
121 fips_drbg_hash.o: ../../include/openssl/ui_compat.h fips_drbg_hash.c
122 fips_drbg_hash.o: fips_rand_lcl.h
123 fips_drbg_lib.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
124 fips_drbg_lib.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
125 fips_drbg_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
126 fips_drbg_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
127 fips_drbg_lib.o: ../../include/openssl/evp.h ../../include/openssl/fips.h
128 fips_drbg_lib.o: ../../include/openssl/fips_rand.h
129 fips_drbg_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
130 fips_drbg_lib.o: ../../include/openssl/objects.h
131 fips_drbg_lib.o: ../../include/openssl/opensslconf.h
132 fips_drbg_lib.o: ../../include/openssl/opensslv.h
133 fips_drbg_lib.o: ../../include/openssl/ossl_typ.h
134 fips_drbg_lib.o: ../../include/openssl/safestack.h
135 fips_drbg_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
136 fips_drbg_lib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
137 fips_drbg_lib.o: fips_drbg_lib.c fips_rand_lcl.h
138 fips_drbg_selftest.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
139 fips_drbg_selftest.o: ../../include/openssl/bio.h
140 fips_drbg_selftest.o: ../../include/openssl/crypto.h
141 fips_drbg_selftest.o: ../../include/openssl/des.h
142 fips_drbg_selftest.o: ../../include/openssl/des_old.h
143 fips_drbg_selftest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
144 fips_drbg_selftest.o: ../../include/openssl/evp.h ../../include/openssl/fips.h
145 fips_drbg_selftest.o: ../../include/openssl/fips_rand.h
146 fips_drbg_selftest.o: ../../include/openssl/lhash.h
147 fips_drbg_selftest.o: ../../include/openssl/obj_mac.h
148 fips_drbg_selftest.o: ../../include/openssl/objects.h
149 fips_drbg_selftest.o: ../../include/openssl/opensslconf.h
150 fips_drbg_selftest.o: ../../include/openssl/opensslv.h
151 fips_drbg_selftest.o: ../../include/openssl/ossl_typ.h
152 fips_drbg_selftest.o: ../../include/openssl/safestack.h
153 fips_drbg_selftest.o: ../../include/openssl/stack.h
154 fips_drbg_selftest.o: ../../include/openssl/symhacks.h
155 fips_drbg_selftest.o: ../../include/openssl/ui.h
156 fips_drbg_selftest.o: ../../include/openssl/ui_compat.h fips_drbg_selftest.c
157 fips_drbg_selftest.o: fips_rand_lcl.h
158 fips_drbgvs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
159 fips_drbgvs.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
160 fips_drbgvs.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
161 fips_drbgvs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
162 fips_drbgvs.o: ../../include/openssl/err.h ../../include/openssl/evp.h
163 fips_drbgvs.o: ../../include/openssl/fips.h ../../include/openssl/fips_rand.h
164 fips_drbgvs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
165 fips_drbgvs.o: ../../include/openssl/objects.h
166 fips_drbgvs.o: ../../include/openssl/opensslconf.h
167 fips_drbgvs.o: ../../include/openssl/opensslv.h
168 fips_drbgvs.o: ../../include/openssl/ossl_typ.h
169 fips_drbgvs.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
170 fips_drbgvs.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
171 fips_drbgvs.o: ../../include/openssl/ui_compat.h ../fips_utl.h fips_drbgvs.c
172 fips_rand.o: ../../e_os.h ../../include/openssl/aes.h
173 fips_rand.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
174 fips_rand.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
175 fips_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
176 fips_rand.o: ../../include/openssl/fips.h ../../include/openssl/fips_rand.h
177 fips_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
178 fips_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
179 fips_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
180 fips_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
181 fips_rand.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
182 fips_rand.o: ../fips_locl.h fips_rand.c
183 fips_rand_selftest.o: ../../include/openssl/bio.h
184 fips_rand_selftest.o: ../../include/openssl/crypto.h
185 fips_rand_selftest.o: ../../include/openssl/des.h
186 fips_rand_selftest.o: ../../include/openssl/des_old.h
187 fips_rand_selftest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
188 fips_rand_selftest.o: ../../include/openssl/fips.h
189 fips_rand_selftest.o: ../../include/openssl/fips_rand.h
190 fips_rand_selftest.o: ../../include/openssl/lhash.h
191 fips_rand_selftest.o: ../../include/openssl/opensslconf.h
192 fips_rand_selftest.o: ../../include/openssl/opensslv.h
193 fips_rand_selftest.o: ../../include/openssl/ossl_typ.h
194 fips_rand_selftest.o: ../../include/openssl/rand.h
195 fips_rand_selftest.o: ../../include/openssl/safestack.h
196 fips_rand_selftest.o: ../../include/openssl/stack.h
197 fips_rand_selftest.o: ../../include/openssl/symhacks.h
198 fips_rand_selftest.o: ../../include/openssl/ui.h
199 fips_rand_selftest.o: ../../include/openssl/ui_compat.h fips_rand_selftest.c
200 fips_randtest.o: ../../e_os.h ../../include/openssl/bio.h
201 fips_randtest.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
202 fips_randtest.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
203 fips_randtest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
204 fips_randtest.o: ../../include/openssl/fips.h ../../include/openssl/fips_rand.h
205 fips_randtest.o: ../../include/openssl/lhash.h
206 fips_randtest.o: ../../include/openssl/opensslconf.h
207 fips_randtest.o: ../../include/openssl/opensslv.h
208 fips_randtest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
209 fips_randtest.o: ../../include/openssl/safestack.h
210 fips_randtest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
211 fips_randtest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
212 fips_randtest.o: ../fips_utl.h fips_randtest.c
213 fips_rngvs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
214 fips_rngvs.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
215 fips_rngvs.o: ../../include/openssl/des_old.h ../../include/openssl/dsa.h
216 fips_rngvs.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
217 fips_rngvs.o: ../../include/openssl/fips.h ../../include/openssl/fips_rand.h
218 fips_rngvs.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
219 fips_rngvs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
220 fips_rngvs.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
221 fips_rngvs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
222 fips_rngvs.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
223 fips_rngvs.o: ../fips_utl.h fips_rngvs.c