Update fips_test_suite make rule.
This commit is contained in:
parent
07cc19fcac
commit
f25209267f
1 changed files with 6 additions and 2 deletions
|
@ -107,8 +107,12 @@ top_fips_test_suite:
|
|||
(cd $(TOP); $(MAKE) DIRS=fips FDIRS=. TARGET=fips_test_suite sub_target)
|
||||
|
||||
fips_test_suite: fips_test_suite.o $(TOP)/libcrypto.a
|
||||
$(CC) $(CFLAGS) -o fips_test_suite fips_test_suite.o $(PEX_LIBS) $(TOP)/libcrypto.a $(EX_LIBS)
|
||||
TOP=$(TOP) $(TOP)/fips/openssl_fips_fingerprint $(TOP)/libcrypto.a fips_test_suite || { rm fips_test_suite; false; }
|
||||
@if [ -z "$(SHARED_LIBS)" ]; then \
|
||||
set -x; $(CC) $(CFLAGS) -o fips_test_suite fips_test_suite.o $(PEX_LIBS) $(TOP)/libcrypto.a $(EX_LIBS); \
|
||||
TOP=$(TOP) $(TOP)/fips/openssl_fips_fingerprint $(TOP)/libcrypto.a fips_test_suite || { rm fips_test_suite; false; }; \
|
||||
else \
|
||||
set -x; $(CC) $(CFLAGS) -o fips_test_suite fips_test_suite.o $(PEX_LIBS) -L$(TOP) -lcrypto $(EX_LIBS); \
|
||||
fi
|
||||
|
||||
fips_test: top tests
|
||||
-cd testvectors && perl -p -i -e 's/COUNT=/COUNT = /' des[23]/req/*.req
|
||||
|
|
Loading…
Reference in a new issue