diff options
author | clucey <catriona.lucey@intel.com> | 2016-02-17 14:38:36 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-03-07 14:36:17 +0100 |
commit | 7f458a48ff3a231d5841466525d2aacbcd4f6b77 (patch) | |
tree | 85f066e1efad61b09242ec27d23f300ae9742fa9 /Makefile.in | |
parent | Trim Travis config part 2 (diff) | |
download | openssl-7f458a48ff3a231d5841466525d2aacbcd4f6b77.tar.xz openssl-7f458a48ff3a231d5841466525d2aacbcd4f6b77.zip |
ALG: Add AFALG engine
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 9fcdb394a6..892a20866e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -230,6 +230,8 @@ INSTALLDIRS= \ $(DESTDIR)$(OPENSSLDIR)/certs \ $(DESTDIR)$(OPENSSLDIR)/private +ENGDIRS={- join(" ", @{$config{engdirs}}) -} + all: Makefile build_all_but_tests # as we stick to -e, CLEARENV ensures that local variables in lower @@ -275,6 +277,7 @@ BUILDENV= LC_ALL=C PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)'\ AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)' \ BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)' \ RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)' \ + ENGDIRS='$(ENGDIRS)' \ SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)' \ MD5_ASM_OBJ='$(MD5_ASM_OBJ)' \ RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)' \ |