diff options
author | Andy Polyakov <appro@openssl.org> | 2014-09-20 10:18:19 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2014-09-20 10:20:38 +0200 |
commit | d475b2a3bfde8d4aceefb41b21acc3711893d2a8 (patch) | |
tree | 2d3e6c4e3a5dd581ea06f4ed8bda12267ab42a65 /crypto/modes | |
parent | Fix warning. (diff) | |
download | openssl-d475b2a3bfde8d4aceefb41b21acc3711893d2a8.tar.xz openssl-d475b2a3bfde8d4aceefb41b21acc3711893d2a8.zip |
Harmonize Tru64 and Linux make rules.
RT: 3333,3165
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/modes')
-rw-r--r-- | crypto/modes/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/modes/Makefile b/crypto/modes/Makefile index ba0b094baa..c6ac7ee574 100644 --- a/crypto/modes/Makefile +++ b/crypto/modes/Makefile @@ -55,9 +55,9 @@ aesni-gcm-x86_64.s: asm/aesni-gcm-x86_64.pl ghash-sparcv9.s: asm/ghash-sparcv9.pl $(PERL) asm/ghash-sparcv9.pl $@ $(CFLAGS) ghash-alpha.s: asm/ghash-alpha.pl - (preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \ + (preproc=$$$$.$@.S; trap "rm $$preproc" INT; \ $(PERL) asm/ghash-alpha.pl > $$preproc && \ - $(CC) -E $$preproc > $@ && rm $$preproc) + $(CC) -E -P $$preproc > $@ && rm $$preproc) ghash-parisc.s: asm/ghash-parisc.pl $(PERL) asm/ghash-parisc.pl $(PERLASM_SCHEME) $@ ghashv8-armx.S: asm/ghashv8-armx.pl |