summaryrefslogtreecommitdiffstats
path: root/Makefile.fips
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-02-21 16:37:42 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-02-21 16:37:42 +0000
commit6892d0eb0315790b078eacb55d86bb568cdb2ee1 (patch)
treed363a772543c988a866cdf43ebf0c807319c15dc /Makefile.fips
parent3deb010dc01a9e23cd48feab25abef3c2d124d7d (diff)
Need to link additional directories for fipscanisteronly build.
Diffstat (limited to 'Makefile.fips')
-rw-r--r--Makefile.fips10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.fips b/Makefile.fips
index ef988fc038..7ed8a34f93 100644
--- a/Makefile.fips
+++ b/Makefile.fips
@@ -152,6 +152,13 @@ SDIRS= \
# keep in mind that the above list is adjusted by ./Configure
# according to no-xxx arguments...
+LINKDIRS= \
+ objects sha hmac des aes modes \
+ bn ec rsa dsa ecdsa dh ecdh dso engine \
+ buffer bio stack lhash rand err \
+ evp asn1 pem x509 x509v3 pkcs7 ocsp ui krb5 \
+ cmac
+
# tests to perform. "alltests" is a special word indicating that all tests
# should be performed.
TESTS = alltests
@@ -516,7 +523,8 @@ files:
links:
@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
- @set -e; target=links; $(RECURSIVE_BUILD_CMD)
+ $(MAKE) -C fips links
+ SDIRS='$(LINKDIRS)' $(MAKE) -C crypto links
gentests:
@(cd test && echo "generating dummy tests (if needed)..." && \