os/ossrv/ssl/tsrc/BC/libcrypto/topenssl/data/Makefile
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ssl/tsrc/BC/libcrypto/topenssl/data/Makefile	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,585 @@
     1.4 +#
     1.5 +# test/Makefile
     1.6 +#
     1.7 +
     1.8 +DIR=		test
     1.9 +TOP=		..
    1.10 +CC=		cc
    1.11 +INCLUDES=	-I$(TOP) -I../include $(KRB5_INCLUDES)
    1.12 +CFLAG=		-g
    1.13 +MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
    1.14 +PERL=		perl
    1.15 +# KRB5 stuff
    1.16 +KRB5_INCLUDES=
    1.17 +LIBKRB5=
    1.18 +
    1.19 +PEX_LIBS=
    1.20 +EX_LIBS= #-lnsl -lsocket
    1.21 +
    1.22 +CFLAGS= $(INCLUDES) $(CFLAG)
    1.23 +
    1.24 +GENERAL=Makefile maketests.com \
    1.25 +	tests.com testenc.com tx509.com trsa.com tcrl.com tsid.com treq.com \
    1.26 +	tpkcs7.com tpkcs7d.com tverify.com testgen.com testss.com testssl.com \
    1.27 +	testca.com VMSca-response.1 VMSca-response.2
    1.28 +
    1.29 +DLIBCRYPTO= ../libcrypto.a
    1.30 +DLIBSSL= ../libssl.a
    1.31 +LIBCRYPTO= -L.. -lcrypto
    1.32 +LIBSSL= -L.. -lssl
    1.33 +
    1.34 +BNTEST=		bntest
    1.35 +ECTEST=		ectest
    1.36 +ECDSATEST=	ecdsatest
    1.37 +ECDHTEST=	ecdhtest
    1.38 +EXPTEST=	exptest
    1.39 +IDEATEST=	ideatest
    1.40 +SHATEST=	shatest
    1.41 +SHA1TEST=	sha1test
    1.42 +SHA256TEST=	sha256t
    1.43 +SHA512TEST=	sha512t
    1.44 +MDC2TEST=	mdc2test
    1.45 +RMDTEST=	rmdtest
    1.46 +MD2TEST=	md2test
    1.47 +MD4TEST=	md4test
    1.48 +MD5TEST=	md5test
    1.49 +HMACTEST=	hmactest
    1.50 +RC2TEST=	rc2test
    1.51 +RC4TEST=	rc4test
    1.52 +RC5TEST=	rc5test
    1.53 +BFTEST=		bftest
    1.54 +CASTTEST=	casttest
    1.55 +DESTEST=	destest
    1.56 +RANDTEST=	randtest
    1.57 +DHTEST=		dhtest
    1.58 +DSATEST=	dsatest
    1.59 +METHTEST=	methtest
    1.60 +SSLTEST=	ssltest
    1.61 +RSATEST=	rsa_test
    1.62 +ENGINETEST=	enginetest
    1.63 +EVPTEST=	evp_test
    1.64 +
    1.65 +TESTS=		alltests
    1.66 +
    1.67 +EXE=	$(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT)  $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \
    1.68 +	$(MD2TEST)$(EXE_EXT)  $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \
    1.69 +	$(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \
    1.70 +	$(DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \
    1.71 +	$(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \
    1.72 +	$(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \
    1.73 +	$(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \
    1.74 +	$(EVPTEST)$(EXE_EXT)
    1.75 +
    1.76 +# $(METHTEST)$(EXE_EXT)
    1.77 +
    1.78 +OBJ=	$(BNTEST).o $(ECTEST).o  $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \
    1.79 +	$(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \
    1.80 +	$(HMACTEST).o \
    1.81 +	$(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \
    1.82 +	$(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \
    1.83 +	$(MDC2TEST).o $(RMDTEST).o \
    1.84 +	$(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \
    1.85 +	$(BFTEST).o  $(SSLTEST).o  $(DSATEST).o  $(EXPTEST).o $(RSATEST).o \
    1.86 +	$(EVPTEST).o
    1.87 +SRC=	$(BNTEST).c $(ECTEST).c  $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \
    1.88 +	$(MD2TEST).c  $(MD4TEST).c $(MD5TEST).c \
    1.89 +	$(HMACTEST).c \
    1.90 +	$(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \
    1.91 +	$(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \
    1.92 +	$(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \
    1.93 +	$(BFTEST).c  $(SSLTEST).c $(DSATEST).c   $(EXPTEST).c $(RSATEST).c \
    1.94 +	$(EVPTEST).c
    1.95 +
    1.96 +EXHEADER= 
    1.97 +HEADER=	$(EXHEADER)
    1.98 +
    1.99 +ALL=    $(GENERAL) $(SRC) $(HEADER)
   1.100 +
   1.101 +top:
   1.102 +	(cd ..; $(MAKE) DIRS=$(DIR) TESTS=$(TESTS) all)
   1.103 +
   1.104 +all:	exe
   1.105 +
   1.106 +exe:	$(EXE) dummytest$(EXE_EXT)
   1.107 +
   1.108 +files:
   1.109 +	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
   1.110 +
   1.111 +links:
   1.112 +
   1.113 +generate: $(SRC)
   1.114 +$(SRC):
   1.115 +	@sh $(TOP)/util/point.sh dummytest.c $@
   1.116 +
   1.117 +errors:
   1.118 +
   1.119 +install:
   1.120 +
   1.121 +tags:
   1.122 +	ctags $(SRC)
   1.123 +
   1.124 +tests:	exe apps $(TESTS)
   1.125 +
   1.126 +apps:
   1.127 +	@(cd ..; $(MAKE) DIRS=apps all)
   1.128 +
   1.129 +alltests: \
   1.130 +	test_des test_idea test_sha test_md4 test_md5 test_hmac \
   1.131 +	test_md2 test_mdc2 \
   1.132 +	test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \
   1.133 +	test_rand test_bn test_ec test_ecdsa test_ecdh \
   1.134 +	test_enc test_x509 test_rsa test_crl test_sid \
   1.135 +	test_gen test_req test_pkcs7 test_verify test_dh test_dsa \
   1.136 +	test_ss test_ca test_engine test_evp test_ssl
   1.137 +
   1.138 +test_evp:
   1.139 +	../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt
   1.140 +
   1.141 +test_des:
   1.142 +	../util/shlib_wrap.sh ./$(DESTEST)
   1.143 +
   1.144 +test_idea:
   1.145 +	../util/shlib_wrap.sh ./$(IDEATEST)
   1.146 +
   1.147 +test_sha:
   1.148 +	../util/shlib_wrap.sh ./$(SHATEST)
   1.149 +	../util/shlib_wrap.sh ./$(SHA1TEST)
   1.150 +	../util/shlib_wrap.sh ./$(SHA256TEST)
   1.151 +	../util/shlib_wrap.sh ./$(SHA512TEST)
   1.152 +
   1.153 +test_mdc2:
   1.154 +	../util/shlib_wrap.sh ./$(MDC2TEST)
   1.155 +
   1.156 +test_md5:
   1.157 +	../util/shlib_wrap.sh ./$(MD5TEST)
   1.158 +
   1.159 +test_md4:
   1.160 +	../util/shlib_wrap.sh ./$(MD4TEST)
   1.161 +
   1.162 +test_hmac:
   1.163 +	../util/shlib_wrap.sh ./$(HMACTEST)
   1.164 +
   1.165 +test_md2:
   1.166 +	../util/shlib_wrap.sh ./$(MD2TEST)
   1.167 +
   1.168 +test_rmd:
   1.169 +	../util/shlib_wrap.sh ./$(RMDTEST)
   1.170 +
   1.171 +test_bf:
   1.172 +	../util/shlib_wrap.sh ./$(BFTEST)
   1.173 +
   1.174 +test_cast:
   1.175 +	../util/shlib_wrap.sh ./$(CASTTEST)
   1.176 +
   1.177 +test_rc2:
   1.178 +	../util/shlib_wrap.sh ./$(RC2TEST)
   1.179 +
   1.180 +test_rc4:
   1.181 +	../util/shlib_wrap.sh ./$(RC4TEST)
   1.182 +
   1.183 +test_rc5:
   1.184 +	../util/shlib_wrap.sh ./$(RC5TEST)
   1.185 +
   1.186 +test_rand:
   1.187 +	../util/shlib_wrap.sh ./$(RANDTEST)
   1.188 +
   1.189 +test_enc:
   1.190 +	@sh ./testenc
   1.191 +
   1.192 +test_x509:
   1.193 +	echo test normal x509v1 certificate
   1.194 +	sh ./tx509 2>/dev/null
   1.195 +	echo test first x509v3 certificate
   1.196 +	sh ./tx509 v3-cert1.pem 2>/dev/null
   1.197 +	echo test second x509v3 certificate
   1.198 +	sh ./tx509 v3-cert2.pem 2>/dev/null
   1.199 +
   1.200 +test_rsa:
   1.201 +	@sh ./trsa 2>/dev/null
   1.202 +	../util/shlib_wrap.sh ./$(RSATEST)
   1.203 +
   1.204 +test_crl:
   1.205 +	@sh ./tcrl 2>/dev/null
   1.206 +
   1.207 +test_sid:
   1.208 +	@sh ./tsid 2>/dev/null
   1.209 +
   1.210 +test_req:
   1.211 +	@sh ./treq 2>/dev/null
   1.212 +	@sh ./treq testreq2.pem 2>/dev/null
   1.213 +
   1.214 +test_pkcs7:
   1.215 +	@sh ./tpkcs7 2>/dev/null
   1.216 +	@sh ./tpkcs7d 2>/dev/null
   1.217 +
   1.218 +test_bn:
   1.219 +	@echo starting big number library test, could take a while...
   1.220 +	@../util/shlib_wrap.sh ./$(BNTEST) >tmp.bntest
   1.221 +	@echo quit >>tmp.bntest
   1.222 +	@echo "running bc"
   1.223 +	@<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"'
   1.224 +	@echo 'test a^b%c implementations'
   1.225 +	../util/shlib_wrap.sh ./$(EXPTEST)
   1.226 +
   1.227 +test_ec:
   1.228 +	@echo 'test elliptic curves'
   1.229 +	../util/shlib_wrap.sh ./$(ECTEST)
   1.230 +
   1.231 +test_ecdsa:
   1.232 +	@echo 'test ecdsa'
   1.233 +	../util/shlib_wrap.sh ./$(ECDSATEST)
   1.234 +
   1.235 +test_ecdh:
   1.236 +	@echo 'test ecdh'
   1.237 +	../util/shlib_wrap.sh ./$(ECDHTEST)
   1.238 +
   1.239 +test_verify:
   1.240 +	@echo "The following command should have some OK's and some failures"
   1.241 +	@echo "There are definitly a few expired certificates"
   1.242 +	../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem
   1.243 +
   1.244 +test_dh:
   1.245 +	@echo "Generate a set of DH parameters"
   1.246 +	../util/shlib_wrap.sh ./$(DHTEST)
   1.247 +
   1.248 +test_dsa:
   1.249 +	@echo "Generate a set of DSA parameters"
   1.250 +	../util/shlib_wrap.sh ./$(DSATEST)
   1.251 +	../util/shlib_wrap.sh ./$(DSATEST) -app2_1
   1.252 +
   1.253 +test_gen:
   1.254 +	@echo "Generate and verify a certificate request"
   1.255 +	@sh ./testgen
   1.256 +
   1.257 +test_ss keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
   1.258 +		intP1.ss intP2.ss: testss
   1.259 +	@echo "Generate and certify a test certificate"
   1.260 +	@sh ./testss
   1.261 +	@cat certCA.ss certU.ss > intP1.ss
   1.262 +	@cat certCA.ss certU.ss certP1.ss > intP2.ss
   1.263 +
   1.264 +test_engine: 
   1.265 +	@echo "Manipulate the ENGINE structures"
   1.266 +	../util/shlib_wrap.sh ./$(ENGINETEST)
   1.267 +
   1.268 +test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
   1.269 +		intP1.ss intP2.ss
   1.270 +	@echo "test SSL protocol"
   1.271 +	../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist
   1.272 +	@sh ./testssl keyU.ss certU.ss certCA.ss
   1.273 +	@sh ./testsslproxy keyP1.ss certP1.ss intP1.ss
   1.274 +	@sh ./testsslproxy keyP2.ss certP2.ss intP2.ss
   1.275 +
   1.276 +test_ca:
   1.277 +	@if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \
   1.278 +	  echo "skipping CA.sh test -- requires RSA"; \
   1.279 +	else \
   1.280 +	  echo "Generate and certify a test certificate via the 'ca' program"; \
   1.281 +	  sh ./testca; \
   1.282 +	fi
   1.283 +
   1.284 +test_aes: #$(AESTEST)
   1.285 +#	@echo "test Rijndael"
   1.286 +#	../util/shlib_wrap.sh ./$(AESTEST)
   1.287 +
   1.288 +lint:
   1.289 +	lint -DLINT $(INCLUDES) $(SRC)>fluff
   1.290 +
   1.291 +depend:
   1.292 +	@if [ -z "$(THIS)" ]; then \
   1.293 +	    $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
   1.294 +	else \
   1.295 +	    $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \
   1.296 +	fi
   1.297 +
   1.298 +dclean:
   1.299 +	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
   1.300 +	mv -f Makefile.new $(MAKEFILE)
   1.301 +
   1.302 +clean:
   1.303 +	rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log
   1.304 +
   1.305 +$(DLIBSSL):
   1.306 +	(cd ..; $(MAKE) DIRS=ssl all)
   1.307 +
   1.308 +$(DLIBCRYPTO):
   1.309 +	(cd ..; $(MAKE) DIRS=crypto all)
   1.310 +
   1.311 +BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
   1.312 +		shlib_target="$(SHLIB_TARGET)"; \
   1.313 +	fi; \
   1.314 +	if [ "$${shlib_target}" = "hpux-shared" -o "$${shlib_target}" = "darwin-shared" ] ; then \
   1.315 +		LIBRARIES="$(DLIBSSL) $(DLIBCRYPTO)"; \
   1.316 +	else \
   1.317 +		LIBRARIES="$(LIBSSL) $(LIBCRYPTO)"; \
   1.318 +	fi; \
   1.319 +	$(MAKE) -f $(TOP)/Makefile.shared -e \
   1.320 +		APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
   1.321 +		LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
   1.322 +		link_app.$${shlib_target}
   1.323 +
   1.324 +$(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO)
   1.325 +	@target=$(RSATEST); $(BUILD_CMD)
   1.326 +
   1.327 +$(BNTEST)$(EXE_EXT): $(BNTEST).o $(DLIBCRYPTO)
   1.328 +	@target=$(BNTEST); $(BUILD_CMD)
   1.329 +
   1.330 +$(ECTEST)$(EXE_EXT): $(ECTEST).o $(DLIBCRYPTO)
   1.331 +	@target=$(ECTEST); $(BUILD_CMD)
   1.332 +
   1.333 +$(EXPTEST)$(EXE_EXT): $(EXPTEST).o $(DLIBCRYPTO)
   1.334 +	@target=$(EXPTEST); $(BUILD_CMD)
   1.335 +
   1.336 +$(IDEATEST)$(EXE_EXT): $(IDEATEST).o $(DLIBCRYPTO)
   1.337 +	@target=$(IDEATEST); $(BUILD_CMD)
   1.338 +
   1.339 +$(MD2TEST)$(EXE_EXT): $(MD2TEST).o $(DLIBCRYPTO)
   1.340 +	@target=$(MD2TEST); $(BUILD_CMD)
   1.341 +
   1.342 +$(SHATEST)$(EXE_EXT): $(SHATEST).o $(DLIBCRYPTO)
   1.343 +	@target=$(SHATEST); $(BUILD_CMD)
   1.344 +
   1.345 +$(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO)
   1.346 +	@target=$(SHA1TEST); $(BUILD_CMD)
   1.347 +
   1.348 +$(SHA256TEST)$(EXE_EXT): $(SHA256TEST).o $(DLIBCRYPTO)
   1.349 +	@target=$(SHA256TEST); $(BUILD_CMD)
   1.350 +
   1.351 +$(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO)
   1.352 +	@target=$(SHA512TEST); $(BUILD_CMD)
   1.353 +
   1.354 +$(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO)
   1.355 +	@target=$(RMDTEST); $(BUILD_CMD)
   1.356 +
   1.357 +$(MDC2TEST)$(EXE_EXT): $(MDC2TEST).o $(DLIBCRYPTO)
   1.358 +	@target=$(MDC2TEST); $(BUILD_CMD)
   1.359 +
   1.360 +$(MD4TEST)$(EXE_EXT): $(MD4TEST).o $(DLIBCRYPTO)
   1.361 +	@target=$(MD4TEST); $(BUILD_CMD)
   1.362 +
   1.363 +$(MD5TEST)$(EXE_EXT): $(MD5TEST).o $(DLIBCRYPTO)
   1.364 +	@target=$(MD5TEST); $(BUILD_CMD)
   1.365 +
   1.366 +$(HMACTEST)$(EXE_EXT): $(HMACTEST).o $(DLIBCRYPTO)
   1.367 +	@target=$(HMACTEST); $(BUILD_CMD)
   1.368 +
   1.369 +$(RC2TEST)$(EXE_EXT): $(RC2TEST).o $(DLIBCRYPTO)
   1.370 +	@target=$(RC2TEST); $(BUILD_CMD)
   1.371 +
   1.372 +$(BFTEST)$(EXE_EXT): $(BFTEST).o $(DLIBCRYPTO)
   1.373 +	@target=$(BFTEST); $(BUILD_CMD)
   1.374 +
   1.375 +$(CASTTEST)$(EXE_EXT): $(CASTTEST).o $(DLIBCRYPTO)
   1.376 +	@target=$(CASTTEST); $(BUILD_CMD)
   1.377 +
   1.378 +$(RC4TEST)$(EXE_EXT): $(RC4TEST).o $(DLIBCRYPTO)
   1.379 +	@target=$(RC4TEST); $(BUILD_CMD)
   1.380 +
   1.381 +$(RC5TEST)$(EXE_EXT): $(RC5TEST).o $(DLIBCRYPTO)
   1.382 +	@target=$(RC5TEST); $(BUILD_CMD)
   1.383 +
   1.384 +$(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO)
   1.385 +	@target=$(DESTEST); $(BUILD_CMD)
   1.386 +
   1.387 +$(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO)
   1.388 +	@target=$(RANDTEST); $(BUILD_CMD)
   1.389 +
   1.390 +$(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO)
   1.391 +	@target=$(DHTEST); $(BUILD_CMD)
   1.392 +
   1.393 +$(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO)
   1.394 +	@target=$(DSATEST); $(BUILD_CMD)
   1.395 +
   1.396 +$(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO)
   1.397 +	@target=$(METHTEST); $(BUILD_CMD)
   1.398 +
   1.399 +$(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO)
   1.400 +	@target=$(SSLTEST); $(BUILD_CMD)
   1.401 +
   1.402 +$(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO)
   1.403 +	@target=$(ENGINETEST); $(BUILD_CMD)
   1.404 +
   1.405 +$(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO)
   1.406 +	@target=$(EVPTEST); $(BUILD_CMD)
   1.407 +
   1.408 +$(ECDSATEST)$(EXE_EXT): $(ECDSATEST).o $(DLIBCRYPTO)
   1.409 +	@target=$(ECDSATEST); $(BUILD_CMD)
   1.410 +
   1.411 +$(ECDHTEST)$(EXE_EXT): $(ECDHTEST).o $(DLIBCRYPTO)
   1.412 +	@target=$(ECDHTEST); $(BUILD_CMD)
   1.413 +
   1.414 +#$(AESTEST).o: $(AESTEST).c
   1.415 +#	$(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c
   1.416 +
   1.417 +#$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO)
   1.418 +#	if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \
   1.419 +#	  $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(DLIBCRYPTO) $(EX_LIBS) ; \
   1.420 +#	else \
   1.421 +#	  $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) ; \
   1.422 +#	fi
   1.423 +
   1.424 +dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO)
   1.425 +	@target=dummytest$; $(BUILD_CMD)
   1.426 +
   1.427 +# DO NOT DELETE THIS LINE -- make depend depends on it.
   1.428 +
   1.429 +bftest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   1.430 +bftest.o: bftest.c
   1.431 +bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.432 +bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
   1.433 +bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
   1.434 +bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
   1.435 +bntest.o: ../include/openssl/err.h ../include/openssl/evp.h
   1.436 +bntest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
   1.437 +bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   1.438 +bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.439 +bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
   1.440 +bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
   1.441 +bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h
   1.442 +bntest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
   1.443 +bntest.o: ../include/openssl/x509_vfy.h bntest.c
   1.444 +casttest.o: ../e_os.h ../include/openssl/e_os2.h
   1.445 +casttest.o: ../include/openssl/opensslconf.h casttest.c
   1.446 +destest.o: ../include/openssl/des.h ../include/openssl/des_old.h
   1.447 +destest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   1.448 +destest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
   1.449 +destest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
   1.450 +destest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h destest.c
   1.451 +dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
   1.452 +dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
   1.453 +dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
   1.454 +dhtest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
   1.455 +dhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.456 +dhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
   1.457 +dhtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h dhtest.c
   1.458 +dsatest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
   1.459 +dsatest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
   1.460 +dsatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
   1.461 +dsatest.o: ../include/openssl/err.h ../include/openssl/lhash.h
   1.462 +dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   1.463 +dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
   1.464 +dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   1.465 +dsatest.o: ../include/openssl/symhacks.h dsatest.c
   1.466 +ecdhtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.467 +ecdhtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h
   1.468 +ecdhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
   1.469 +ecdhtest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
   1.470 +ecdhtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   1.471 +ecdhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.472 +ecdhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
   1.473 +ecdhtest.o: ../include/openssl/sha.h ../include/openssl/stack.h
   1.474 +ecdhtest.o: ../include/openssl/symhacks.h ecdhtest.c
   1.475 +ecdsatest.o: ../include/openssl/opensslconf.h ecdsatest.c
   1.476 +ectest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   1.477 +ectest.o: ectest.c
   1.478 +enginetest.o: ../include/openssl/bio.h ../include/openssl/buffer.h
   1.479 +enginetest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   1.480 +enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h
   1.481 +enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
   1.482 +enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.483 +enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   1.484 +enginetest.o: ../include/openssl/symhacks.h enginetest.c
   1.485 +evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.486 +evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h
   1.487 +evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
   1.488 +evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h
   1.489 +evp_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
   1.490 +evp_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   1.491 +evp_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.492 +evp_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   1.493 +evp_test.o: ../include/openssl/symhacks.h evp_test.c
   1.494 +exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
   1.495 +exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   1.496 +exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h
   1.497 +exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   1.498 +exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
   1.499 +exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   1.500 +exptest.o: ../include/openssl/symhacks.h exptest.c
   1.501 +hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.502 +hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   1.503 +hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h
   1.504 +hmactest.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
   1.505 +hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   1.506 +hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.507 +hmactest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   1.508 +hmactest.o: ../include/openssl/symhacks.h hmactest.c
   1.509 +ideatest.o: ../e_os.h ../include/openssl/e_os2.h
   1.510 +ideatest.o: ../include/openssl/opensslconf.h ideatest.c
   1.511 +md2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.512 +md2test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   1.513 +md2test.o: ../include/openssl/evp.h ../include/openssl/md2.h
   1.514 +md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
   1.515 +md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   1.516 +md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
   1.517 +md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md2test.c
   1.518 +md4test.o: ../e_os.h ../include/openssl/e_os2.h
   1.519 +md4test.o: ../include/openssl/opensslconf.h md4test.c
   1.520 +md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.521 +md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   1.522 +md5test.o: ../include/openssl/evp.h ../include/openssl/md5.h
   1.523 +md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
   1.524 +md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   1.525 +md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
   1.526 +md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md5test.c
   1.527 +mdc2test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
   1.528 +mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   1.529 +mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.530 +mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   1.531 +mdc2test.o: ../include/openssl/symhacks.h mdc2test.c
   1.532 +randtest.o: ../e_os.h ../include/openssl/e_os2.h
   1.533 +randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h
   1.534 +randtest.o: ../include/openssl/rand.h randtest.c
   1.535 +rc2test.o: ../e_os.h ../include/openssl/e_os2.h
   1.536 +rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c
   1.537 +rc4test.o: ../e_os.h ../include/openssl/e_os2.h
   1.538 +rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h
   1.539 +rc4test.o: ../include/openssl/sha.h rc4test.c
   1.540 +rc5test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
   1.541 +rc5test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
   1.542 +rc5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.543 +rc5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   1.544 +rc5test.o: ../include/openssl/symhacks.h rc5test.c
   1.545 +rmdtest.o: ../e_os.h ../include/openssl/e_os2.h
   1.546 +rmdtest.o: ../include/openssl/opensslconf.h rmdtest.c
   1.547 +rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.548 +rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h
   1.549 +rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h
   1.550 +rsa_test.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
   1.551 +rsa_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.552 +rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h
   1.553 +rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
   1.554 +rsa_test.o: ../include/openssl/symhacks.h rsa_test.c
   1.555 +sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.556 +sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   1.557 +sha1test.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
   1.558 +sha1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   1.559 +sha1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.560 +sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
   1.561 +sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h sha1test.c
   1.562 +shatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.563 +shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
   1.564 +shatest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
   1.565 +shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
   1.566 +shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
   1.567 +shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
   1.568 +shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h shatest.c
   1.569 +ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
   1.570 +ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
   1.571 +ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h
   1.572 +ssltest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
   1.573 +ssltest.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
   1.574 +ssltest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
   1.575 +ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h
   1.576 +ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
   1.577 +ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
   1.578 +ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
   1.579 +ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
   1.580 +ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
   1.581 +ssltest.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h
   1.582 +ssltest.o: ../include/openssl/rand.h ../include/openssl/rsa.h
   1.583 +ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
   1.584 +ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
   1.585 +ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
   1.586 +ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
   1.587 +ssltest.o: ../include/openssl/tls1.h ../include/openssl/x509.h
   1.588 +ssltest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h ssltest.c