diff options
author | Andy Polyakov <appro@openssl.org> | 2016-03-18 15:45:52 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2016-03-21 11:44:27 +0100 |
commit | b75ac3c2a3ae8549eb8afb701c1fc7a55c2afdb5 (patch) | |
tree | d86c28653c6f7f87cb35f51d1d2b60b2eaac9de2 /crypto/rc4 | |
parent | Configurations/windows-makefile.tmpl: respect no-makedepend. (diff) | |
download | openssl-b75ac3c2a3ae8549eb8afb701c1fc7a55c2afdb5.tar.xz openssl-b75ac3c2a3ae8549eb8afb701c1fc7a55c2afdb5.zip |
Build system: VC-WIN64I fixups.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/rc4')
-rw-r--r-- | crypto/rc4/build.info | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/crypto/rc4/build.info b/crypto/rc4/build.info index d82a9ed879..6c488890f9 100644 --- a/crypto/rc4/build.info +++ b/crypto/rc4/build.info @@ -10,10 +10,17 @@ GENERATE[rc4-md5-x86_64.s]=asm/rc4-md5-x86_64.pl $(PERLASM_SCHEME) GENERATE[rc4-parisc.s]=asm/rc4-parisc.pl $(PERLASM_SCHEME) +BEGINRAW[makefile(windows)] +{- $builddir -}\rc4-ia64.asm: {- $sourcedir -}\asm\rc4-ia64.pl + $(PERL) {- $sourcedir -}\asm\rc4-ia64.pl $@.S + $(CC) -DSZ=4 -EP $@.S > $@.i && move /Y $@.i $@ + del /Q $@.S +ENDRAW[makefile(windows)] + BEGINRAW[Makefile] {- $builddir -}/rc4-ia64.s: {- $sourcedir -}/asm/rc4-ia64.pl @(trap "rm $@.*" INT 0; \ - perl $< $(CFLAGS) $(LIB_CFLAGS) $@.S; \ + $(PERL) $< $(CFLAGS) $(LIB_CFLAGS) $@.S; \ case `awk '/^#define RC4_INT/{print$$NF}' $(BLDDIR)/include/openssl/opensslconf.h` in \ int) set -x; $(CC) $(CFLAGS) $(LIB_CFLAGS) -DSZ=4 -E $@.S > $@.i && mv -f $@.i $@;; \ char) set -x; $(CC) $(CFLAGS) $(LIB_CFLAGS) -DSZ=1 -E $@.S > $@.i && mv -f $@.i $@;; \ |