os/ossrv/ssl/tsrc/topenssl/data/Makefile
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 #
     2 # test/Makefile
     3 #
     4 
     5 DIR=		test
     6 TOP=		..
     7 CC=		cc
     8 INCLUDES=	-I$(TOP) -I../include $(KRB5_INCLUDES)
     9 CFLAG=		-g
    10 MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
    11 PERL=		perl
    12 # KRB5 stuff
    13 KRB5_INCLUDES=
    14 LIBKRB5=
    15 
    16 PEX_LIBS=
    17 EX_LIBS= #-lnsl -lsocket
    18 
    19 CFLAGS= $(INCLUDES) $(CFLAG)
    20 
    21 GENERAL=Makefile maketests.com \
    22 	tests.com testenc.com tx509.com trsa.com tcrl.com tsid.com treq.com \
    23 	tpkcs7.com tpkcs7d.com tverify.com testgen.com testss.com testssl.com \
    24 	testca.com VMSca-response.1 VMSca-response.2
    25 
    26 DLIBCRYPTO= ../libcrypto.a
    27 DLIBSSL= ../libssl.a
    28 LIBCRYPTO= -L.. -lcrypto
    29 LIBSSL= -L.. -lssl
    30 
    31 BNTEST=		bntest
    32 ECTEST=		ectest
    33 ECDSATEST=	ecdsatest
    34 ECDHTEST=	ecdhtest
    35 EXPTEST=	exptest
    36 IDEATEST=	ideatest
    37 SHATEST=	shatest
    38 SHA1TEST=	sha1test
    39 SHA256TEST=	sha256t
    40 SHA512TEST=	sha512t
    41 MDC2TEST=	mdc2test
    42 RMDTEST=	rmdtest
    43 MD2TEST=	md2test
    44 MD4TEST=	md4test
    45 MD5TEST=	md5test
    46 HMACTEST=	hmactest
    47 RC2TEST=	rc2test
    48 RC4TEST=	rc4test
    49 RC5TEST=	rc5test
    50 BFTEST=		bftest
    51 CASTTEST=	casttest
    52 DESTEST=	destest
    53 RANDTEST=	randtest
    54 DHTEST=		dhtest
    55 DSATEST=	dsatest
    56 METHTEST=	methtest
    57 SSLTEST=	ssltest
    58 RSATEST=	rsa_test
    59 ENGINETEST=	enginetest
    60 EVPTEST=	evp_test
    61 
    62 TESTS=		alltests
    63 
    64 EXE=	$(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT)  $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \
    65 	$(MD2TEST)$(EXE_EXT)  $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \
    66 	$(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \
    67 	$(DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \
    68 	$(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \
    69 	$(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \
    70 	$(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \
    71 	$(EVPTEST)$(EXE_EXT)
    72 
    73 # $(METHTEST)$(EXE_EXT)
    74 
    75 OBJ=	$(BNTEST).o $(ECTEST).o  $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \
    76 	$(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \
    77 	$(HMACTEST).o \
    78 	$(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \
    79 	$(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \
    80 	$(MDC2TEST).o $(RMDTEST).o \
    81 	$(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \
    82 	$(BFTEST).o  $(SSLTEST).o  $(DSATEST).o  $(EXPTEST).o $(RSATEST).o \
    83 	$(EVPTEST).o
    84 SRC=	$(BNTEST).c $(ECTEST).c  $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \
    85 	$(MD2TEST).c  $(MD4TEST).c $(MD5TEST).c \
    86 	$(HMACTEST).c \
    87 	$(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \
    88 	$(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \
    89 	$(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \
    90 	$(BFTEST).c  $(SSLTEST).c $(DSATEST).c   $(EXPTEST).c $(RSATEST).c \
    91 	$(EVPTEST).c
    92 
    93 EXHEADER= 
    94 HEADER=	$(EXHEADER)
    95 
    96 ALL=    $(GENERAL) $(SRC) $(HEADER)
    97 
    98 top:
    99 	(cd ..; $(MAKE) DIRS=$(DIR) TESTS=$(TESTS) all)
   100 
   101 all:	exe
   102 
   103 exe:	$(EXE) dummytest$(EXE_EXT)
   104 
   105 files:
   106 	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
   107 
   108 links:
   109 
   110 generate: $(SRC)
   111 $(SRC):
   112 	@sh $(TOP)/util/point.sh dummytest.c $@
   113 
   114 errors:
   115 
   116 install:
   117 
   118 tags:
   119 	ctags $(SRC)
   120 
   121 tests:	exe apps $(TESTS)
   122 
   123 apps:
   124 	@(cd ..; $(MAKE) DIRS=apps all)
   125 
   126 alltests: \
   127 	test_des test_idea test_sha test_md4 test_md5 test_hmac \
   128 	test_md2 test_mdc2 \
   129 	test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \
   130 	test_rand test_bn test_ec test_ecdsa test_ecdh \
   131 	test_enc test_x509 test_rsa test_crl test_sid \
   132 	test_gen test_req test_pkcs7 test_verify test_dh test_dsa \
   133 	test_ss test_ca test_engine test_evp test_ssl
   134 
   135 test_evp:
   136 	../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt
   137 
   138 test_des:
   139 	../util/shlib_wrap.sh ./$(DESTEST)
   140 
   141 test_idea:
   142 	../util/shlib_wrap.sh ./$(IDEATEST)
   143 
   144 test_sha:
   145 	../util/shlib_wrap.sh ./$(SHATEST)
   146 	../util/shlib_wrap.sh ./$(SHA1TEST)
   147 	../util/shlib_wrap.sh ./$(SHA256TEST)
   148 	../util/shlib_wrap.sh ./$(SHA512TEST)
   149 
   150 test_mdc2:
   151 	../util/shlib_wrap.sh ./$(MDC2TEST)
   152 
   153 test_md5:
   154 	../util/shlib_wrap.sh ./$(MD5TEST)
   155 
   156 test_md4:
   157 	../util/shlib_wrap.sh ./$(MD4TEST)
   158 
   159 test_hmac:
   160 	../util/shlib_wrap.sh ./$(HMACTEST)
   161 
   162 test_md2:
   163 	../util/shlib_wrap.sh ./$(MD2TEST)
   164 
   165 test_rmd:
   166 	../util/shlib_wrap.sh ./$(RMDTEST)
   167 
   168 test_bf:
   169 	../util/shlib_wrap.sh ./$(BFTEST)
   170 
   171 test_cast:
   172 	../util/shlib_wrap.sh ./$(CASTTEST)
   173 
   174 test_rc2:
   175 	../util/shlib_wrap.sh ./$(RC2TEST)
   176 
   177 test_rc4:
   178 	../util/shlib_wrap.sh ./$(RC4TEST)
   179 
   180 test_rc5:
   181 	../util/shlib_wrap.sh ./$(RC5TEST)
   182 
   183 test_rand:
   184 	../util/shlib_wrap.sh ./$(RANDTEST)
   185 
   186 test_enc:
   187 	@sh ./testenc
   188 
   189 test_x509:
   190 	echo test normal x509v1 certificate
   191 	sh ./tx509 2>/dev/null
   192 	echo test first x509v3 certificate
   193 	sh ./tx509 v3-cert1.pem 2>/dev/null
   194 	echo test second x509v3 certificate
   195 	sh ./tx509 v3-cert2.pem 2>/dev/null
   196 
   197 test_rsa:
   198 	@sh ./trsa 2>/dev/null
   199 	../util/shlib_wrap.sh ./$(RSATEST)
   200 
   201 test_crl:
   202 	@sh ./tcrl 2>/dev/null
   203 
   204 test_sid:
   205 	@sh ./tsid 2>/dev/null
   206 
   207 test_req:
   208 	@sh ./treq 2>/dev/null
   209 	@sh ./treq testreq2.pem 2>/dev/null
   210 
   211 test_pkcs7:
   212 	@sh ./tpkcs7 2>/dev/null
   213 	@sh ./tpkcs7d 2>/dev/null
   214 
   215 test_bn:
   216 	@echo starting big number library test, could take a while...
   217 	@../util/shlib_wrap.sh ./$(BNTEST) >tmp.bntest
   218 	@echo quit >>tmp.bntest
   219 	@echo "running bc"
   220 	@<tmp.bntest sh -c "`sh ./bctest ignore`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"'
   221 	@echo 'test a^b%c implementations'
   222 	../util/shlib_wrap.sh ./$(EXPTEST)
   223 
   224 test_ec:
   225 	@echo 'test elliptic curves'
   226 	../util/shlib_wrap.sh ./$(ECTEST)
   227 
   228 test_ecdsa:
   229 	@echo 'test ecdsa'
   230 	../util/shlib_wrap.sh ./$(ECDSATEST)
   231 
   232 test_ecdh:
   233 	@echo 'test ecdh'
   234 	../util/shlib_wrap.sh ./$(ECDHTEST)
   235 
   236 test_verify:
   237 	@echo "The following command should have some OK's and some failures"
   238 	@echo "There are definitly a few expired certificates"
   239 	../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem
   240 
   241 test_dh:
   242 	@echo "Generate a set of DH parameters"
   243 	../util/shlib_wrap.sh ./$(DHTEST)
   244 
   245 test_dsa:
   246 	@echo "Generate a set of DSA parameters"
   247 	../util/shlib_wrap.sh ./$(DSATEST)
   248 	../util/shlib_wrap.sh ./$(DSATEST) -app2_1
   249 
   250 test_gen:
   251 	@echo "Generate and verify a certificate request"
   252 	@sh ./testgen
   253 
   254 test_ss keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
   255 		intP1.ss intP2.ss: testss
   256 	@echo "Generate and certify a test certificate"
   257 	@sh ./testss
   258 	@cat certCA.ss certU.ss > intP1.ss
   259 	@cat certCA.ss certU.ss certP1.ss > intP2.ss
   260 
   261 test_engine: 
   262 	@echo "Manipulate the ENGINE structures"
   263 	../util/shlib_wrap.sh ./$(ENGINETEST)
   264 
   265 test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
   266 		intP1.ss intP2.ss
   267 	@echo "test SSL protocol"
   268 	../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist
   269 	@sh ./testssl keyU.ss certU.ss certCA.ss
   270 	@sh ./testsslproxy keyP1.ss certP1.ss intP1.ss
   271 	@sh ./testsslproxy keyP2.ss certP2.ss intP2.ss
   272 
   273 test_ca:
   274 	@if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \
   275 	  echo "skipping CA.sh test -- requires RSA"; \
   276 	else \
   277 	  echo "Generate and certify a test certificate via the 'ca' program"; \
   278 	  sh ./testca; \
   279 	fi
   280 
   281 test_aes: #$(AESTEST)
   282 #	@echo "test Rijndael"
   283 #	../util/shlib_wrap.sh ./$(AESTEST)
   284 
   285 lint:
   286 	lint -DLINT $(INCLUDES) $(SRC)>fluff
   287 
   288 depend:
   289 	@if [ -z "$(THIS)" ]; then \
   290 	    $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
   291 	else \
   292 	    $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \
   293 	fi
   294 
   295 dclean:
   296 	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
   297 	mv -f Makefile.new $(MAKEFILE)
   298 
   299 clean:
   300 	rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log
   301 
   302 $(DLIBSSL):
   303 	(cd ..; $(MAKE) DIRS=ssl all)
   304 
   305 $(DLIBCRYPTO):
   306 	(cd ..; $(MAKE) DIRS=crypto all)
   307 
   308 BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
   309 		shlib_target="$(SHLIB_TARGET)"; \
   310 	fi; \
   311 	if [ "$${shlib_target}" = "hpux-shared" -o "$${shlib_target}" = "darwin-shared" ] ; then \
   312 		LIBRARIES="$(DLIBSSL) $(DLIBCRYPTO)"; \
   313 	else \
   314 		LIBRARIES="$(LIBSSL) $(LIBCRYPTO)"; \
   315 	fi; \
   316 	$(MAKE) -f $(TOP)/Makefile.shared -e \
   317 		APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
   318 		LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
   319 		link_app.$${shlib_target}
   320 
   321 $(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO)
   322 	@target=$(RSATEST); $(BUILD_CMD)
   323 
   324 $(BNTEST)$(EXE_EXT): $(BNTEST).o $(DLIBCRYPTO)
   325 	@target=$(BNTEST); $(BUILD_CMD)
   326 
   327 $(ECTEST)$(EXE_EXT): $(ECTEST).o $(DLIBCRYPTO)
   328 	@target=$(ECTEST); $(BUILD_CMD)
   329 
   330 $(EXPTEST)$(EXE_EXT): $(EXPTEST).o $(DLIBCRYPTO)
   331 	@target=$(EXPTEST); $(BUILD_CMD)
   332 
   333 $(IDEATEST)$(EXE_EXT): $(IDEATEST).o $(DLIBCRYPTO)
   334 	@target=$(IDEATEST); $(BUILD_CMD)
   335 
   336 $(MD2TEST)$(EXE_EXT): $(MD2TEST).o $(DLIBCRYPTO)
   337 	@target=$(MD2TEST); $(BUILD_CMD)
   338 
   339 $(SHATEST)$(EXE_EXT): $(SHATEST).o $(DLIBCRYPTO)
   340 	@target=$(SHATEST); $(BUILD_CMD)
   341 
   342 $(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO)
   343 	@target=$(SHA1TEST); $(BUILD_CMD)
   344 
   345 $(SHA256TEST)$(EXE_EXT): $(SHA256TEST).o $(DLIBCRYPTO)
   346 	@target=$(SHA256TEST); $(BUILD_CMD)
   347 
   348 $(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO)
   349 	@target=$(SHA512TEST); $(BUILD_CMD)
   350 
   351 $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO)
   352 	@target=$(RMDTEST); $(BUILD_CMD)
   353 
   354 $(MDC2TEST)$(EXE_EXT): $(MDC2TEST).o $(DLIBCRYPTO)
   355 	@target=$(MDC2TEST); $(BUILD_CMD)
   356 
   357 $(MD4TEST)$(EXE_EXT): $(MD4TEST).o $(DLIBCRYPTO)
   358 	@target=$(MD4TEST); $(BUILD_CMD)
   359 
   360 $(MD5TEST)$(EXE_EXT): $(MD5TEST).o $(DLIBCRYPTO)
   361 	@target=$(MD5TEST); $(BUILD_CMD)
   362 
   363 $(HMACTEST)$(EXE_EXT): $(HMACTEST).o $(DLIBCRYPTO)
   364 	@target=$(HMACTEST); $(BUILD_CMD)
   365 
   366 $(RC2TEST)$(EXE_EXT): $(RC2TEST).o $(DLIBCRYPTO)
   367 	@target=$(RC2TEST); $(BUILD_CMD)
   368 
   369 $(BFTEST)$(EXE_EXT): $(BFTEST).o $(DLIBCRYPTO)
   370 	@target=$(BFTEST); $(BUILD_CMD)
   371 
   372 $(CASTTEST)$(EXE_EXT): $(CASTTEST).o $(DLIBCRYPTO)
   373 	@target=$(CASTTEST); $(BUILD_CMD)
   374 
   375 $(RC4TEST)$(EXE_EXT): $(RC4TEST).o $(DLIBCRYPTO)
   376 	@target=$(RC4TEST); $(BUILD_CMD)
   377 
   378 $(RC5TEST)$(EXE_EXT): $(RC5TEST).o $(DLIBCRYPTO)
   379 	@target=$(RC5TEST); $(BUILD_CMD)
   380 
   381 $(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO)
   382 	@target=$(DESTEST); $(BUILD_CMD)
   383 
   384 $(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO)
   385 	@target=$(RANDTEST); $(BUILD_CMD)
   386 
   387 $(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO)
   388 	@target=$(DHTEST); $(BUILD_CMD)
   389 
   390 $(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO)
   391 	@target=$(DSATEST); $(BUILD_CMD)
   392 
   393 $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO)
   394 	@target=$(METHTEST); $(BUILD_CMD)
   395 
   396 $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO)
   397 	@target=$(SSLTEST); $(BUILD_CMD)
   398 
   399 $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO)
   400 	@target=$(ENGINETEST); $(BUILD_CMD)
   401 
   402 $(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO)
   403 	@target=$(EVPTEST); $(BUILD_CMD)
   404 
   405 $(ECDSATEST)$(EXE_EXT): $(ECDSATEST).o $(DLIBCRYPTO)
   406 	@target=$(ECDSATEST); $(BUILD_CMD)
   407 
   408 $(ECDHTEST)$(EXE_EXT): $(ECDHTEST).o $(DLIBCRYPTO)
   409 	@target=$(ECDHTEST); $(BUILD_CMD)
   410 
   411 #$(AESTEST).o: $(AESTEST).c
   412 #	$(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c
   413 
   414 #$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO)
   415 #	if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \
   416 #	  $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(DLIBCRYPTO) $(EX_LIBS) ; \
   417 #	else \
   418 #	  $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) ; \
   419 #	fi
   420 
   421 dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO)
   422 	@target=dummytest$; $(BUILD_CMD)
   423 
   424 # DO NOT DELETE THIS LINE -- make depend depends on it.
   425 
   426 bftest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   427 bftest.o: bftest.c
   428 bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   429 bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
   430 bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
   431 bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
   432 bntest.o: ../include/openssl/err.h ../include/openssl/evp.h
   433 bntest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
   434 bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   435 bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   436 bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
   437 bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
   438 bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h
   439 bntest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
   440 bntest.o: ../include/openssl/x509_vfy.h bntest.c
   441 casttest.o: ../e_os.h ../include/openssl/e_os2.h
   442 casttest.o: ../include/openssl/opensslconf.h casttest.c
   443 destest.o: ../include/openssl/des.h ../include/openssl/des_old.h
   444 destest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   445 destest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
   446 destest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
   447 destest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h destest.c
   448 dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
   449 dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
   450 dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
   451 dhtest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
   452 dhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   453 dhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
   454 dhtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h dhtest.c
   455 dsatest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
   456 dsatest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
   457 dsatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
   458 dsatest.o: ../include/openssl/err.h ../include/openssl/lhash.h
   459 dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   460 dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
   461 dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   462 dsatest.o: ../include/openssl/symhacks.h dsatest.c
   463 ecdhtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   464 ecdhtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h
   465 ecdhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
   466 ecdhtest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
   467 ecdhtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   468 ecdhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   469 ecdhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
   470 ecdhtest.o: ../include/openssl/sha.h ../include/openssl/stack.h
   471 ecdhtest.o: ../include/openssl/symhacks.h ecdhtest.c
   472 ecdsatest.o: ../include/openssl/opensslconf.h ecdsatest.c
   473 ectest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   474 ectest.o: ectest.c
   475 enginetest.o: ../include/openssl/bio.h ../include/openssl/buffer.h
   476 enginetest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   477 enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h
   478 enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
   479 enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   480 enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   481 enginetest.o: ../include/openssl/symhacks.h enginetest.c
   482 evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   483 evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h
   484 evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
   485 evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h
   486 evp_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
   487 evp_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   488 evp_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   489 evp_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   490 evp_test.o: ../include/openssl/symhacks.h evp_test.c
   491 exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
   492 exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   493 exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h
   494 exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   495 exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
   496 exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   497 exptest.o: ../include/openssl/symhacks.h exptest.c
   498 hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   499 hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   500 hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h
   501 hmactest.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
   502 hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   503 hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   504 hmactest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   505 hmactest.o: ../include/openssl/symhacks.h hmactest.c
   506 ideatest.o: ../e_os.h ../include/openssl/e_os2.h
   507 ideatest.o: ../include/openssl/opensslconf.h ideatest.c
   508 md2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   509 md2test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   510 md2test.o: ../include/openssl/evp.h ../include/openssl/md2.h
   511 md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
   512 md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   513 md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
   514 md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md2test.c
   515 md4test.o: ../e_os.h ../include/openssl/e_os2.h
   516 md4test.o: ../include/openssl/opensslconf.h md4test.c
   517 md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   518 md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   519 md5test.o: ../include/openssl/evp.h ../include/openssl/md5.h
   520 md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
   521 md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   522 md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
   523 md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md5test.c
   524 mdc2test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
   525 mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   526 mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   527 mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   528 mdc2test.o: ../include/openssl/symhacks.h mdc2test.c
   529 randtest.o: ../e_os.h ../include/openssl/e_os2.h
   530 randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h
   531 randtest.o: ../include/openssl/rand.h randtest.c
   532 rc2test.o: ../e_os.h ../include/openssl/e_os2.h
   533 rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c
   534 rc4test.o: ../e_os.h ../include/openssl/e_os2.h
   535 rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h
   536 rc4test.o: ../include/openssl/sha.h rc4test.c
   537 rc5test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
   538 rc5test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   539 rc5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   540 rc5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   541 rc5test.o: ../include/openssl/symhacks.h rc5test.c
   542 rmdtest.o: ../e_os.h ../include/openssl/e_os2.h
   543 rmdtest.o: ../include/openssl/opensslconf.h rmdtest.c
   544 rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   545 rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h
   546 rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h
   547 rsa_test.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
   548 rsa_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   549 rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h
   550 rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   551 rsa_test.o: ../include/openssl/symhacks.h rsa_test.c
   552 sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   553 sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   554 sha1test.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
   555 sha1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   556 sha1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   557 sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
   558 sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h sha1test.c
   559 shatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   560 shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   561 shatest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
   562 shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   563 shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   564 shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
   565 shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h shatest.c
   566 ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   567 ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
   568 ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h
   569 ssltest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
   570 ssltest.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
   571 ssltest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
   572 ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h
   573 ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
   574 ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
   575 ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   576 ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
   577 ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
   578 ssltest.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h
   579 ssltest.o: ../include/openssl/rand.h ../include/openssl/rsa.h
   580 ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
   581 ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
   582 ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
   583 ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
   584 ssltest.o: ../include/openssl/tls1.h ../include/openssl/x509.h
   585 ssltest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h ssltest.c