~ubuntu-branches/ubuntu/trusty/openssl/trusty

« back to all changes in this revision

Viewing changes to test/Makefile.save

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2014-01-08 15:57:24 UTC
  • mfrom: (11.1.46 sid)
  • Revision ID: package-import@ubuntu.com-20140108155724-kl61on9fyqmod2z9
Tags: 1.0.1f-1ubuntu1
* Merge with Debian, remaining changes.
  - debian/libssl1.0.0.postinst:
    + Display a system restart required notification on libssl1.0.0
      upgrade on servers.
    + Use a different priority for libssl1.0.0/restart-services depending
      on whether a desktop, or server dist-upgrade is being performed.
  - debian/{libssl1.0.0-udeb.dirs, control, rules}: Create
    libssl1.0.0-udeb, for the benefit of wget-udeb (no wget-udeb package
    in Debian).
  - debian/{libcrypto1.0.0-udeb.dirs, libssl1.0.0.dirs, libssl1.0.0.files,
    rules}: Move runtime libraries to /lib, for the benefit of
    wpasupplicant.
  - debian/patches/perlpath-quilt.patch: Don't change perl #! paths under
    .pc.
  - debian/rules:
    + Don't run 'make test' when cross-building.
    + Use host compiler when cross-building.  Patch from Neil Williams.
    + Don't build for processors no longer supported: i586 (on i386)
    + Fix Makefile to properly clean up libs/ dirs in clean target.
    + Replace duplicate files in the doc directory with symlinks.
  - debian/control: Mark Debian Vcs-* as XS-Debian-Vcs-*
  - debian/patches/ubuntu_deb676533_arm_asm.patch: Enable arm assembly
    code.
  - debian/rules: Enable optimized 64bit elliptic curve code contributed
    by Google.
* Dropped changes:
  - debian/patches/arm64-support: included in debian-targets.patch
  - debian/patches/no_default_rdrand.patch: upstream
  - debian/patches/openssl-1.0.1e-env-zlib.patch: zlib is now completely
    disabled in debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
WPTEST=         wp_test
 
48
RC2TEST=        rc2test
 
49
RC4TEST=        rc4test
 
50
RC5TEST=        rc5test
 
51
BFTEST=         bftest
 
52
CASTTEST=       casttest
 
53
DESTEST=        destest
 
54
RANDTEST=       randtest
 
55
DHTEST=         dhtest
 
56
DSATEST=        dsatest
 
57
METHTEST=       methtest
 
58
SSLTEST=        ssltest
 
59
RSATEST=        rsa_test
 
60
ENGINETEST=     enginetest
 
61
EVPTEST=        evp_test
 
62
IGETEST=        igetest
 
63
JPAKETEST=      jpaketest
 
64
SRPTEST=        srptest
 
65
ASN1TEST=       asn1test
 
66
 
 
67
TESTS=          alltests
 
68
 
 
69
EXE=    $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT)  $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \
 
70
        $(MD2TEST)$(EXE_EXT)  $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) $(WPTEST)$(EXE_EXT) \
 
71
        $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \
 
72
        $(DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \
 
73
        $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \
 
74
        $(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \
 
75
        $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \
 
76
        $(EVPTEST)$(EXE_EXT) $(IGETEST)$(EXE_EXT) $(JPAKETEST)$(EXE_EXT) $(SRPTEST)$(EXE_EXT) \
 
77
        $(ASN1TEST)$(EXE_EXT)
 
78
 
 
79
# $(METHTEST)$(EXE_EXT)
 
80
 
 
81
OBJ=    $(BNTEST).o $(ECTEST).o  $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \
 
82
        $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \
 
83
        $(HMACTEST).o $(WPTEST).o \
 
84
        $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \
 
85
        $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \
 
86
        $(MDC2TEST).o $(RMDTEST).o \
 
87
        $(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \
 
88
        $(BFTEST).o  $(SSLTEST).o  $(DSATEST).o  $(EXPTEST).o $(RSATEST).o \
 
89
        $(EVPTEST).o $(IGETEST).o $(JPAKETEST).o $(ASN1TEST).o
 
90
SRC=    $(BNTEST).c $(ECTEST).c  $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \
 
91
        $(MD2TEST).c  $(MD4TEST).c $(MD5TEST).c \
 
92
        $(HMACTEST).c $(WPTEST).c \
 
93
        $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \
 
94
        $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \
 
95
        $(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \
 
96
        $(BFTEST).c  $(SSLTEST).c $(DSATEST).c   $(EXPTEST).c $(RSATEST).c \
 
97
        $(EVPTEST).c $(IGETEST).c $(JPAKETEST).c $(SRPTEST).c $(ASN1TEST).c
 
98
 
 
99
EXHEADER= 
 
100
HEADER= $(EXHEADER)
 
101
 
 
102
ALL=    $(GENERAL) $(SRC) $(HEADER)
 
103
 
 
104
top:
 
105
        (cd ..; $(MAKE) DIRS=$(DIR) TESTS=$(TESTS) all)
 
106
 
 
107
all:    exe
 
108
 
 
109
exe:    $(EXE) dummytest$(EXE_EXT)
 
110
 
 
111
files:
 
112
        $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
 
113
 
 
114
links:
 
115
 
 
116
generate: $(SRC)
 
117
$(SRC):
 
118
        @sh $(TOP)/util/point.sh dummytest.c $@
 
119
 
 
120
errors:
 
121
 
 
122
install:
 
123
 
 
124
tags:
 
125
        ctags $(SRC)
 
126
 
 
127
tests:  exe apps $(TESTS)
 
128
 
 
129
apps:
 
130
        @(cd ..; $(MAKE) DIRS=apps all)
 
131
 
 
132
alltests: \
 
133
        test_des test_idea test_sha test_md4 test_md5 test_hmac \
 
134
        test_md2 test_mdc2 test_wp \
 
135
        test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \
 
136
        test_rand test_bn test_ec test_ecdsa test_ecdh \
 
137
        test_enc test_x509 test_rsa test_crl test_sid \
 
138
        test_gen test_req test_pkcs7 test_verify test_dh test_dsa \
 
139
        test_ss test_ca test_engine test_evp test_ssl test_tsa test_ige \
 
140
        test_jpake test_srp test_cms
 
141
 
 
142
test_evp:
 
143
        ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt
 
144
 
 
145
test_des:
 
146
        ../util/shlib_wrap.sh ./$(DESTEST)
 
147
 
 
148
test_idea:
 
149
        ../util/shlib_wrap.sh ./$(IDEATEST)
 
150
 
 
151
test_sha:
 
152
        ../util/shlib_wrap.sh ./$(SHATEST)
 
153
        ../util/shlib_wrap.sh ./$(SHA1TEST)
 
154
        ../util/shlib_wrap.sh ./$(SHA256TEST)
 
155
        ../util/shlib_wrap.sh ./$(SHA512TEST)
 
156
 
 
157
test_mdc2:
 
158
        ../util/shlib_wrap.sh ./$(MDC2TEST)
 
159
 
 
160
test_md5:
 
161
        ../util/shlib_wrap.sh ./$(MD5TEST)
 
162
 
 
163
test_md4:
 
164
        ../util/shlib_wrap.sh ./$(MD4TEST)
 
165
 
 
166
test_hmac:
 
167
        ../util/shlib_wrap.sh ./$(HMACTEST)
 
168
 
 
169
test_wp:
 
170
        ../util/shlib_wrap.sh ./$(WPTEST)
 
171
 
 
172
test_md2:
 
173
        ../util/shlib_wrap.sh ./$(MD2TEST)
 
174
 
 
175
test_rmd:
 
176
        ../util/shlib_wrap.sh ./$(RMDTEST)
 
177
 
 
178
test_bf:
 
179
        ../util/shlib_wrap.sh ./$(BFTEST)
 
180
 
 
181
test_cast:
 
182
        ../util/shlib_wrap.sh ./$(CASTTEST)
 
183
 
 
184
test_rc2:
 
185
        ../util/shlib_wrap.sh ./$(RC2TEST)
 
186
 
 
187
test_rc4:
 
188
        ../util/shlib_wrap.sh ./$(RC4TEST)
 
189
 
 
190
test_rc5:
 
191
        ../util/shlib_wrap.sh ./$(RC5TEST)
 
192
 
 
193
test_rand:
 
194
        ../util/shlib_wrap.sh ./$(RANDTEST)
 
195
 
 
196
test_enc:
 
197
        @sh ./testenc
 
198
 
 
199
test_x509:
 
200
        echo test normal x509v1 certificate
 
201
        sh ./tx509 2>/dev/null
 
202
        echo test first x509v3 certificate
 
203
        sh ./tx509 v3-cert1.pem 2>/dev/null
 
204
        echo test second x509v3 certificate
 
205
        sh ./tx509 v3-cert2.pem 2>/dev/null
 
206
 
 
207
test_rsa: $(RSATEST)$(EXE_EXT)
 
208
        @sh ./trsa 2>/dev/null
 
209
        ../util/shlib_wrap.sh ./$(RSATEST)
 
210
 
 
211
test_crl:
 
212
        @sh ./tcrl 2>/dev/null
 
213
 
 
214
test_sid:
 
215
        @sh ./tsid 2>/dev/null
 
216
 
 
217
test_req:
 
218
        @sh ./treq 2>/dev/null
 
219
        @sh ./treq testreq2.pem 2>/dev/null
 
220
 
 
221
test_pkcs7:
 
222
        @sh ./tpkcs7 2>/dev/null
 
223
        @sh ./tpkcs7d 2>/dev/null
 
224
 
 
225
test_bn:
 
226
        @echo starting big number library test, could take a while...
 
227
        @../util/shlib_wrap.sh ./$(BNTEST) >tmp.bntest
 
228
        @echo quit >>tmp.bntest
 
229
        @echo "running bc"
 
230
        @<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"'
 
231
        @echo 'test a^b%c implementations'
 
232
        ../util/shlib_wrap.sh ./$(EXPTEST)
 
233
 
 
234
test_ec:
 
235
        @echo 'test elliptic curves'
 
236
        ../util/shlib_wrap.sh ./$(ECTEST)
 
237
 
 
238
test_ecdsa:
 
239
        @echo 'test ecdsa'
 
240
        ../util/shlib_wrap.sh ./$(ECDSATEST)
 
241
 
 
242
test_ecdh:
 
243
        @echo 'test ecdh'
 
244
        ../util/shlib_wrap.sh ./$(ECDHTEST)
 
245
 
 
246
test_verify:
 
247
        @echo "The following command should have some OK's and some failures"
 
248
        @echo "There are definitly a few expired certificates"
 
249
        ../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs/demo ../certs/demo/*.pem
 
250
 
 
251
test_dh:
 
252
        @echo "Generate a set of DH parameters"
 
253
        ../util/shlib_wrap.sh ./$(DHTEST)
 
254
 
 
255
test_dsa:
 
256
        @echo "Generate a set of DSA parameters"
 
257
        ../util/shlib_wrap.sh ./$(DSATEST)
 
258
        ../util/shlib_wrap.sh ./$(DSATEST) -app2_1
 
259
 
 
260
test_gen:
 
261
        @echo "Generate and verify a certificate request"
 
262
        @sh ./testgen
 
263
 
 
264
test_ss keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
 
265
                intP1.ss intP2.ss: testss
 
266
        @echo "Generate and certify a test certificate"
 
267
        @sh ./testss
 
268
        @cat certCA.ss certU.ss > intP1.ss
 
269
        @cat certCA.ss certU.ss certP1.ss > intP2.ss
 
270
 
 
271
test_engine: 
 
272
        @echo "Manipulate the ENGINE structures"
 
273
        ../util/shlib_wrap.sh ./$(ENGINETEST)
 
274
 
 
275
test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
 
276
                intP1.ss intP2.ss
 
277
        @echo "test SSL protocol"
 
278
        @if [ -n "$(FIPSCANLIB)" ]; then \
 
279
          sh ./testfipsssl keyU.ss certU.ss certCA.ss; \
 
280
        fi
 
281
        ../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist
 
282
        @sh ./testssl keyU.ss certU.ss certCA.ss
 
283
        @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss
 
284
        @sh ./testsslproxy keyP2.ss certP2.ss intP2.ss
 
285
 
 
286
test_ca:
 
287
        @if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \
 
288
          echo "skipping CA.sh test -- requires RSA"; \
 
289
        else \
 
290
          echo "Generate and certify a test certificate via the 'ca' program"; \
 
291
          sh ./testca; \
 
292
        fi
 
293
 
 
294
test_aes: #$(AESTEST)
 
295
#       @echo "test Rijndael"
 
296
#       ../util/shlib_wrap.sh ./$(AESTEST)
 
297
 
 
298
test_tsa:
 
299
        @if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \
 
300
          echo "skipping testtsa test -- requires RSA"; \
 
301
        else \
 
302
          sh ./testtsa; \
 
303
        fi
 
304
 
 
305
test_ige: $(IGETEST)$(EXE_EXT)
 
306
        @echo "Test IGE mode"
 
307
        ../util/shlib_wrap.sh ./$(IGETEST)
 
308
 
 
309
test_jpake: $(JPAKETEST)$(EXE_EXT)
 
310
        @echo "Test JPAKE"
 
311
        ../util/shlib_wrap.sh ./$(JPAKETEST)
 
312
 
 
313
test_cms:
 
314
        @echo "CMS consistency test"
 
315
        $(PERL) cms-test.pl
 
316
 
 
317
test_srp: $(SRPTEST)$(EXE_EXT)
 
318
        @echo "Test SRP"
 
319
        ../util/shlib_wrap.sh ./srptest
 
320
 
 
321
lint:
 
322
        lint -DLINT $(INCLUDES) $(SRC)>fluff
 
323
 
 
324
depend:
 
325
        @if [ -z "$(THIS)" ]; then \
 
326
            $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
 
327
        else \
 
328
            $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \
 
329
        fi
 
330
 
 
331
dclean:
 
332
        $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
 
333
        mv -f Makefile.new $(MAKEFILE)
 
334
        rm -f $(SRC) $(SHA256TEST).c $(SHA512TEST).c evptests.txt newkey.pem testkey.pem \
 
335
                        testreq.pem
 
336
 
 
337
clean:
 
338
        rm -f .rnd tmp.bntest tmp.bctest *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log dummytest
 
339
 
 
340
$(DLIBSSL):
 
341
        (cd ..; $(MAKE) DIRS=ssl all)
 
342
 
 
343
$(DLIBCRYPTO):
 
344
        (cd ..; $(MAKE) DIRS=crypto all)
 
345
 
 
346
BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
 
347
                shlib_target="$(SHLIB_TARGET)"; \
 
348
        fi; \
 
349
        LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \
 
350
        $(MAKE) -f $(TOP)/Makefile.shared -e \
 
351
                CC="$${CC}" APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
 
352
                LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
 
353
                link_app.$${shlib_target}
 
354
 
 
355
FIPS_BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
 
356
                shlib_target="$(SHLIB_TARGET)"; \
 
357
        fi; \
 
358
        LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \
 
359
        if [ -z "$(SHARED_LIBS)" -a -n "$(FIPSCANLIB)" ] ; then \
 
360
                FIPSLD_CC="$(CC)"; CC=$(FIPSDIR)/bin/fipsld; export CC FIPSLD_CC; \
 
361
        fi; \
 
362
        $(MAKE) -f $(TOP)/Makefile.shared -e \
 
363
                CC="$${CC}" APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
 
364
                LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
 
365
                link_app.$${shlib_target}
 
366
 
 
367
$(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO)
 
368
        @target=$(RSATEST); $(BUILD_CMD)
 
369
 
 
370
$(BNTEST)$(EXE_EXT): $(BNTEST).o $(DLIBCRYPTO)
 
371
        @target=$(BNTEST); $(BUILD_CMD)
 
372
 
 
373
$(ECTEST)$(EXE_EXT): $(ECTEST).o $(DLIBCRYPTO)
 
374
        @target=$(ECTEST); $(BUILD_CMD)
 
375
 
 
376
$(EXPTEST)$(EXE_EXT): $(EXPTEST).o $(DLIBCRYPTO)
 
377
        @target=$(EXPTEST); $(BUILD_CMD)
 
378
 
 
379
$(IDEATEST)$(EXE_EXT): $(IDEATEST).o $(DLIBCRYPTO)
 
380
        @target=$(IDEATEST); $(BUILD_CMD)
 
381
 
 
382
$(MD2TEST)$(EXE_EXT): $(MD2TEST).o $(DLIBCRYPTO)
 
383
        @target=$(MD2TEST); $(BUILD_CMD)
 
384
 
 
385
$(SHATEST)$(EXE_EXT): $(SHATEST).o $(DLIBCRYPTO)
 
386
        @target=$(SHATEST); $(BUILD_CMD)
 
387
 
 
388
$(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO)
 
389
        @target=$(SHA1TEST); $(BUILD_CMD)
 
390
 
 
391
$(SHA256TEST)$(EXE_EXT): $(SHA256TEST).o $(DLIBCRYPTO)
 
392
        @target=$(SHA256TEST); $(BUILD_CMD)
 
393
 
 
394
$(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO)
 
395
        @target=$(SHA512TEST); $(BUILD_CMD)
 
396
 
 
397
$(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO)
 
398
        @target=$(RMDTEST); $(BUILD_CMD)
 
399
 
 
400
$(MDC2TEST)$(EXE_EXT): $(MDC2TEST).o $(DLIBCRYPTO)
 
401
        @target=$(MDC2TEST); $(BUILD_CMD)
 
402
 
 
403
$(MD4TEST)$(EXE_EXT): $(MD4TEST).o $(DLIBCRYPTO)
 
404
        @target=$(MD4TEST); $(BUILD_CMD)
 
405
 
 
406
$(MD5TEST)$(EXE_EXT): $(MD5TEST).o $(DLIBCRYPTO)
 
407
        @target=$(MD5TEST); $(BUILD_CMD)
 
408
 
 
409
$(HMACTEST)$(EXE_EXT): $(HMACTEST).o $(DLIBCRYPTO)
 
410
        @target=$(HMACTEST); $(BUILD_CMD)
 
411
 
 
412
$(WPTEST)$(EXE_EXT): $(WPTEST).o $(DLIBCRYPTO)
 
413
        @target=$(WPTEST); $(BUILD_CMD)
 
414
 
 
415
$(RC2TEST)$(EXE_EXT): $(RC2TEST).o $(DLIBCRYPTO)
 
416
        @target=$(RC2TEST); $(BUILD_CMD)
 
417
 
 
418
$(BFTEST)$(EXE_EXT): $(BFTEST).o $(DLIBCRYPTO)
 
419
        @target=$(BFTEST); $(BUILD_CMD)
 
420
 
 
421
$(CASTTEST)$(EXE_EXT): $(CASTTEST).o $(DLIBCRYPTO)
 
422
        @target=$(CASTTEST); $(BUILD_CMD)
 
423
 
 
424
$(RC4TEST)$(EXE_EXT): $(RC4TEST).o $(DLIBCRYPTO)
 
425
        @target=$(RC4TEST); $(BUILD_CMD)
 
426
 
 
427
$(RC5TEST)$(EXE_EXT): $(RC5TEST).o $(DLIBCRYPTO)
 
428
        @target=$(RC5TEST); $(BUILD_CMD)
 
429
 
 
430
$(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO)
 
431
        @target=$(DESTEST); $(BUILD_CMD)
 
432
 
 
433
$(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO)
 
434
        @target=$(RANDTEST); $(BUILD_CMD)
 
435
 
 
436
$(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO)
 
437
        @target=$(DHTEST); $(BUILD_CMD)
 
438
 
 
439
$(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO)
 
440
        @target=$(DSATEST); $(BUILD_CMD)
 
441
 
 
442
$(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO)
 
443
        @target=$(METHTEST); $(BUILD_CMD)
 
444
 
 
445
$(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO)
 
446
        @target=$(SSLTEST); $(FIPS_BUILD_CMD)
 
447
 
 
448
$(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO)
 
449
        @target=$(ENGINETEST); $(BUILD_CMD)
 
450
 
 
451
$(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO)
 
452
        @target=$(EVPTEST); $(BUILD_CMD)
 
453
 
 
454
$(ECDSATEST)$(EXE_EXT): $(ECDSATEST).o $(DLIBCRYPTO)
 
455
        @target=$(ECDSATEST); $(BUILD_CMD)
 
456
 
 
457
$(ECDHTEST)$(EXE_EXT): $(ECDHTEST).o $(DLIBCRYPTO)
 
458
        @target=$(ECDHTEST); $(BUILD_CMD)
 
459
 
 
460
$(IGETEST)$(EXE_EXT): $(IGETEST).o $(DLIBCRYPTO)
 
461
        @target=$(IGETEST); $(BUILD_CMD)
 
462
 
 
463
$(JPAKETEST)$(EXE_EXT): $(JPAKETEST).o $(DLIBCRYPTO)
 
464
        @target=$(JPAKETEST); $(BUILD_CMD)
 
465
 
 
466
$(ASN1TEST)$(EXE_EXT): $(ASN1TEST).o $(DLIBCRYPTO)
 
467
        @target=$(ASN1TEST); $(BUILD_CMD)
 
468
 
 
469
$(SRPTEST)$(EXE_EXT): $(SRPTEST).o $(DLIBCRYPTO)
 
470
        @target=$(SRPTEST); $(BUILD_CMD)
 
471
 
 
472
#$(AESTEST).o: $(AESTEST).c
 
473
#       $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c
 
474
 
 
475
#$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO)
 
476
#       if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \
 
477
#         $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(DLIBCRYPTO) $(EX_LIBS) ; \
 
478
#       else \
 
479
#         $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) ; \
 
480
#       fi
 
481
 
 
482
dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO)
 
483
        @target=dummytest; $(BUILD_CMD)
 
484
 
 
485
# DO NOT DELETE THIS LINE -- make depend depends on it.
 
486
 
 
487
asn1test.o: ../include/openssl/asn1.h ../include/openssl/asn1_mac.h
 
488
asn1test.o: ../include/openssl/bio.h ../include/openssl/buffer.h
 
489
asn1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
490
asn1test.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
 
491
asn1test.o: ../include/openssl/ecdsa.h ../include/openssl/evp.h
 
492
asn1test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
 
493
asn1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
 
494
asn1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
495
asn1test.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
 
496
asn1test.o: ../include/openssl/sha.h ../include/openssl/stack.h
 
497
asn1test.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
 
498
asn1test.o: ../include/openssl/x509_vfy.h asn1test.c
 
499
bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h
 
500
bftest.o: ../include/openssl/opensslconf.h bftest.c
 
501
bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
502
bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
 
503
bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
 
504
bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
 
505
bntest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
 
506
bntest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
 
507
bntest.o: ../include/openssl/evp.h ../include/openssl/lhash.h
 
508
bntest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
 
509
bntest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
510
bntest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
 
511
bntest.o: ../include/openssl/rand.h ../include/openssl/rsa.h
 
512
bntest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
 
513
bntest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
 
514
bntest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bntest.c
 
515
casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h
 
516
casttest.o: ../include/openssl/opensslconf.h casttest.c
 
517
destest.o: ../include/openssl/des.h ../include/openssl/des_old.h
 
518
destest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
 
519
destest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
 
520
destest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
 
521
destest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h destest.c
 
522
dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
 
523
dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
 
524
dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
 
525
dhtest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
 
526
dhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
527
dhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
 
528
dhtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h dhtest.c
 
529
dsatest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
 
530
dsatest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
 
531
dsatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
 
532
dsatest.o: ../include/openssl/err.h ../include/openssl/lhash.h
 
533
dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
534
dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
 
535
dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
 
536
dsatest.o: ../include/openssl/symhacks.h dsatest.c
 
537
ecdhtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
538
ecdhtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h
 
539
ecdhtest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
 
540
ecdhtest.o: ../include/openssl/ecdh.h ../include/openssl/err.h
 
541
ecdhtest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
 
542
ecdhtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
 
543
ecdhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
544
ecdhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
 
545
ecdhtest.o: ../include/openssl/sha.h ../include/openssl/stack.h
 
546
ecdhtest.o: ../include/openssl/symhacks.h ecdhtest.c
 
547
ecdsatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
 
548
ecdsatest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
 
549
ecdsatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
550
ecdsatest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
 
551
ecdsatest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
 
552
ecdsatest.o: ../include/openssl/err.h ../include/openssl/evp.h
 
553
ecdsatest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
 
554
ecdsatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
 
555
ecdsatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
556
ecdsatest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
 
557
ecdsatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
 
558
ecdsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
 
559
ecdsatest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
 
560
ecdsatest.o: ecdsatest.c
 
561
ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
562
ectest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
 
563
ectest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
564
ectest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
 
565
ectest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
 
566
ectest.o: ../include/openssl/err.h ../include/openssl/evp.h
 
567
ectest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
 
568
ectest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
 
569
ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
570
ectest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
 
571
ectest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
 
572
ectest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
 
573
ectest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ectest.c
 
574
enginetest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
 
575
enginetest.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
 
576
enginetest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
 
577
enginetest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
 
578
enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h
 
579
enginetest.o: ../include/openssl/evp.h ../include/openssl/lhash.h
 
580
enginetest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
 
581
enginetest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
582
enginetest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
 
583
enginetest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
 
584
enginetest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
 
585
enginetest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
 
586
enginetest.o: enginetest.c
 
587
evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
588
evp_test.o: ../include/openssl/buffer.h ../include/openssl/conf.h
 
589
evp_test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
590
evp_test.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
 
591
evp_test.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
 
592
evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h
 
593
evp_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
 
594
evp_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
 
595
evp_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
596
evp_test.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
 
597
evp_test.o: ../include/openssl/sha.h ../include/openssl/stack.h
 
598
evp_test.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
 
599
evp_test.o: ../include/openssl/x509_vfy.h evp_test.c
 
600
exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
 
601
exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
602
exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h
 
603
exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
604
exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
 
605
exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
 
606
exptest.o: ../include/openssl/symhacks.h exptest.c
 
607
hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
608
hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
609
hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h
 
610
hmactest.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
 
611
hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
 
612
hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
613
hmactest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
 
614
hmactest.o: ../include/openssl/symhacks.h hmactest.c
 
615
ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h
 
616
ideatest.o: ../include/openssl/opensslconf.h ideatest.c
 
617
igetest.o: ../include/openssl/aes.h ../include/openssl/e_os2.h
 
618
igetest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h
 
619
igetest.o: ../include/openssl/rand.h igetest.c
 
620
jpaketest.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
 
621
jpaketest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
 
622
jpaketest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
623
jpaketest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
 
624
jpaketest.o: ../include/openssl/symhacks.h jpaketest.c
 
625
md2test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
 
626
md2test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
 
627
md2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
628
md2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
 
629
md2test.o: ../include/openssl/symhacks.h md2test.c
 
630
md4test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
631
md4test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
632
md4test.o: ../include/openssl/evp.h ../include/openssl/md4.h
 
633
md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
 
634
md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
635
md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
 
636
md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md4test.c
 
637
md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
638
md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
639
md5test.o: ../include/openssl/evp.h ../include/openssl/md5.h
 
640
md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
 
641
md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
642
md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
 
643
md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md5test.c
 
644
mdc2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
645
mdc2test.o: ../include/openssl/crypto.h ../include/openssl/des.h
 
646
mdc2test.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h
 
647
mdc2test.o: ../include/openssl/evp.h ../include/openssl/mdc2.h
 
648
mdc2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
 
649
mdc2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
650
mdc2test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
 
651
mdc2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
 
652
mdc2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h mdc2test.c
 
653
randtest.o: ../e_os.h ../include/openssl/e_os2.h
 
654
randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h
 
655
randtest.o: ../include/openssl/rand.h randtest.c
 
656
rc2test.o: ../e_os.h ../include/openssl/e_os2.h
 
657
rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c
 
658
rc4test.o: ../e_os.h ../include/openssl/e_os2.h
 
659
rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h
 
660
rc4test.o: ../include/openssl/sha.h rc4test.c
 
661
rc5test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
 
662
rc5test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
 
663
rc5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
664
rc5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
 
665
rc5test.o: ../include/openssl/symhacks.h rc5test.c
 
666
rmdtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
667
rmdtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
668
rmdtest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
 
669
rmdtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
 
670
rmdtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
671
rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/safestack.h
 
672
rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h rmdtest.c
 
673
rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
674
rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h
 
675
rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h
 
676
rsa_test.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
 
677
rsa_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
678
rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h
 
679
rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
 
680
rsa_test.o: ../include/openssl/symhacks.h rsa_test.c
 
681
sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
682
sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
683
sha1test.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
 
684
sha1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
 
685
sha1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
686
sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
 
687
sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h sha1test.c
 
688
shatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
689
shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
690
shatest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
 
691
shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
 
692
shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
 
693
shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
 
694
shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h shatest.c
 
695
srptest.o: ../include/openssl/bio.h ../include/openssl/bn.h
 
696
srptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
697
srptest.o: ../include/openssl/err.h ../include/openssl/lhash.h
 
698
srptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
699
srptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
 
700
srptest.o: ../include/openssl/safestack.h ../include/openssl/srp.h
 
701
srptest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h srptest.c
 
702
ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
 
703
ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
 
704
ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h
 
705
ssltest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
 
706
ssltest.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
 
707
ssltest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
 
708
ssltest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
 
709
ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h
 
710
ssltest.o: ../include/openssl/evp.h ../include/openssl/hmac.h
 
711
ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
 
712
ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
 
713
ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
714
ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
 
715
ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
 
716
ssltest.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
 
717
ssltest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
 
718
ssltest.o: ../include/openssl/sha.h ../include/openssl/srp.h
 
719
ssltest.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
 
720
ssltest.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
 
721
ssltest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
 
722
ssltest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
 
723
ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
 
724
ssltest.o: ../include/openssl/x509v3.h ssltest.c
 
725
wp_test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
 
726
wp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
 
727
wp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
 
728
wp_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
 
729
wp_test.o: ../include/openssl/whrlpool.h wp_test.c