1#
2# OpenSSL/fips/rand/Makefile
3#
4
5DIR=	rand
6TOP=	../..
7CC=	cc
8INCLUDES=
9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR=     /usr/local/ssl
12INSTALLTOP=/usr/local/ssl
13MAKEDEPPROG=	makedepend
14MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
15MAKEFILE=	Makefile
16AR=		ar r
17
18CFLAGS= $(INCLUDES) $(CFLAG)
19
20GENERAL=Makefile
21TEST= fips_randtest.c fips_rngvs.c
22APPS=
23
24LIB=$(TOP)/libcrypto.a
25LIBSRC=fips_rand.c fips_rand_selftest.c
26LIBOBJ=fips_rand.o fips_rand_selftest.o
27
28SRC= $(LIBSRC)
29
30EXHEADER= fips_rand.h
31HEADER=	$(EXHEADER)
32
33ALL=    $(GENERAL) $(SRC) $(HEADER)
34
35top:
36	(cd $(TOP); $(MAKE) DIRS=fips SDIRS=$(DIR) sub_all)
37
38all:	lib
39
40lib:	$(LIBOBJ)
41	@echo $(LIBOBJ) > lib
42
43files:
44	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
45
46links:
47	@$(PERL) $(TOP)/util/mklink.pl $(TOP)/include/openssl $(EXHEADER)
48	@$(PERL) $(TOP)/util/mklink.pl $(TOP)/test $(TEST)
49	@$(PERL) $(TOP)/util/mklink.pl $(TOP)/apps $(APPS)
50
51install:
52	@headerlist="$(EXHEADER)"; for i in $$headerlist; \
53	do \
54	  (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
55	  chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
56	done
57
58tags:
59	ctags $(SRC)
60
61tests:
62
63Q=../testvectors/rng/req
64A=../testvectors/rng/rsp
65
66fips_test:
67	-rm -rf $(A)
68	mkdir $(A)
69	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
70	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
71	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
72	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
73	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
74	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
75
76lint:
77	lint -DLINT $(INCLUDES) $(SRC)>fluff
78
79depend:
80	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(SRC) $(TEST)
81
82dclean:
83	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
84	mv -f Makefile.new $(MAKEFILE)
85
86clean:
87	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
88
89# DO NOT DELETE THIS LINE -- make depend depends on it.
90
91fips_rand.o: ../../e_os.h ../../include/openssl/aes.h
92fips_rand.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
93fips_rand.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
94fips_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
95fips_rand.o: ../../include/openssl/fips.h ../../include/openssl/fips_rand.h
96fips_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
97fips_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
98fips_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
99fips_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
100fips_rand.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
101fips_rand.o: ../fips_locl.h fips_rand.c
102fips_rand_selftest.o: ../../include/openssl/bio.h
103fips_rand_selftest.o: ../../include/openssl/crypto.h
104fips_rand_selftest.o: ../../include/openssl/des.h
105fips_rand_selftest.o: ../../include/openssl/des_old.h
106fips_rand_selftest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
107fips_rand_selftest.o: ../../include/openssl/fips.h
108fips_rand_selftest.o: ../../include/openssl/fips_rand.h
109fips_rand_selftest.o: ../../include/openssl/lhash.h
110fips_rand_selftest.o: ../../include/openssl/opensslconf.h
111fips_rand_selftest.o: ../../include/openssl/opensslv.h
112fips_rand_selftest.o: ../../include/openssl/ossl_typ.h
113fips_rand_selftest.o: ../../include/openssl/rand.h
114fips_rand_selftest.o: ../../include/openssl/safestack.h
115fips_rand_selftest.o: ../../include/openssl/stack.h
116fips_rand_selftest.o: ../../include/openssl/symhacks.h
117fips_rand_selftest.o: ../../include/openssl/ui.h
118fips_rand_selftest.o: ../../include/openssl/ui_compat.h fips_rand_selftest.c
119fips_randtest.o: ../../e_os.h ../../include/openssl/bio.h
120fips_randtest.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
121fips_randtest.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
122fips_randtest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
123fips_randtest.o: ../../include/openssl/fips_rand.h
124fips_randtest.o: ../../include/openssl/lhash.h
125fips_randtest.o: ../../include/openssl/opensslconf.h
126fips_randtest.o: ../../include/openssl/opensslv.h
127fips_randtest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
128fips_randtest.o: ../../include/openssl/safestack.h
129fips_randtest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
130fips_randtest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
131fips_randtest.o: ../fips_utl.h fips_randtest.c
132fips_rngvs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
133fips_rngvs.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
134fips_rngvs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
135fips_rngvs.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
136fips_rngvs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
137fips_rngvs.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
138fips_rngvs.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
139fips_rngvs.o: ../../include/openssl/evp.h ../../include/openssl/fips.h
140fips_rngvs.o: ../../include/openssl/fips_rand.h ../../include/openssl/lhash.h
141fips_rngvs.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
142fips_rngvs.o: ../../include/openssl/opensslconf.h
143fips_rngvs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
144fips_rngvs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
145fips_rngvs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
146fips_rngvs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
147fips_rngvs.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
148fips_rngvs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
149fips_rngvs.o: ../../include/openssl/x509v3.h ../fips_utl.h fips_rngvs.c
150