1# 2# OpenSSL/fips/des/Makefile 3# 4 5DIR= des 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 18ASFLAGS= $(INCLUDES) $(ASFLAG) 19AFLAGS= $(ASFLAGS) 20 21CFLAGS= $(INCLUDES) $(CFLAG) 22 23GENERAL=Makefile 24TEST= fips_desmovs.c 25APPS= 26 27LIB=$(TOP)/libcrypto.a 28LIBSRC=fips_des_selftest.c 29LIBOBJ=fips_des_selftest.o 30 31SRC= $(LIBSRC) 32 33EXHEADER= 34HEADER= 35 36ALL= $(GENERAL) $(SRC) $(HEADER) 37 38top: 39 (cd $(TOP); $(MAKE) DIRS=fips FDIRS=$(DIR) sub_all) 40 41all: lib 42 43lib: $(LIBOBJ) 44 @echo $(LIBOBJ) > lib 45 46files: 47 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO 48 49links: 50 @$(PERL) $(TOP)/util/mklink.pl $(TOP)/include/openssl $(EXHEADER) 51 @$(PERL) $(TOP)/util/mklink.pl $(TOP)/test $(TEST) 52 @$(PERL) $(TOP)/util/mklink.pl $(TOP)/apps $(APPS) 53 54install: 55 @headerlist="$(EXHEADER)"; for i in $$headerlist; \ 56 do \ 57 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ 58 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ 59 done 60 61tags: 62 ctags $(SRC) 63 64tests: 65 66fips_test: 67 -find ../testvectors/tdes/req -name '*.req' > testlist 68 -rm -rf ../testvectors/tdes/rsp 69 mkdir ../testvectors/tdes/rsp 70 if [ -s testlist ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_desmovs -d testlist; fi 71 72lint: 73 lint -DLINT $(INCLUDES) $(SRC)>fluff 74 75depend: 76 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) \ 77 $(SRC) $(TEST) 78dclean: 79 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 80 mv -f Makefile.new $(MAKEFILE) 81 82clean: 83 rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff testlist 84# DO NOT DELETE THIS LINE -- make depend depends on it. 85 86fips_des_selftest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h 87fips_des_selftest.o: ../../include/openssl/crypto.h 88fips_des_selftest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h 89fips_des_selftest.o: ../../include/openssl/evp.h ../../include/openssl/fips.h 90fips_des_selftest.o: ../../include/openssl/lhash.h 91fips_des_selftest.o: ../../include/openssl/obj_mac.h 92fips_des_selftest.o: ../../include/openssl/objects.h 93fips_des_selftest.o: ../../include/openssl/opensslconf.h 94fips_des_selftest.o: ../../include/openssl/opensslv.h 95fips_des_selftest.o: ../../include/openssl/ossl_typ.h 96fips_des_selftest.o: ../../include/openssl/safestack.h 97fips_des_selftest.o: ../../include/openssl/stack.h 98fips_des_selftest.o: ../../include/openssl/symhacks.h fips_des_selftest.c 99fips_desmovs.o: ../../e_os.h ../../include/openssl/asn1.h 100fips_desmovs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h 101fips_desmovs.o: ../../include/openssl/crypto.h ../../include/openssl/des.h 102fips_desmovs.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h 103fips_desmovs.o: ../../include/openssl/err.h ../../include/openssl/evp.h 104fips_desmovs.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h 105fips_desmovs.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h 106fips_desmovs.o: ../../include/openssl/opensslconf.h 107fips_desmovs.o: ../../include/openssl/opensslv.h 108fips_desmovs.o: ../../include/openssl/ossl_typ.h 109fips_desmovs.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h 110fips_desmovs.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h 111fips_desmovs.o: ../../include/openssl/ui_compat.h ../fips_utl.h fips_desmovs.c 112