diff options
author | Andy Polyakov <appro@openssl.org> | 2008-01-15 11:27:06 +0000 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2008-01-15 11:27:06 +0000 |
commit | 676517e08e9dbe4cfdc962efe62e24ed4a04ff09 (patch) | |
tree | 7c66c559174418a700bff9708fa9da68c3c77326 /crypto | |
parent | 52108cecc0609ae343f7779532f145f81c314272 (diff) | |
download | openssl-new-676517e08e9dbe4cfdc962efe62e24ed4a04ff09.tar.gz |
crypto/rc5/Makefile was erroneously omitted from last perlasm unification.
Also remove obsolete and now misleading comments.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/bf/Makefile | 2 | ||||
-rw-r--r-- | crypto/bn/Makefile | 2 | ||||
-rw-r--r-- | crypto/des/Makefile | 2 | ||||
-rw-r--r-- | crypto/rc5/Makefile | 13 |
4 files changed, 2 insertions, 17 deletions
diff --git a/crypto/bf/Makefile b/crypto/bf/Makefile index 9525a0bc35..dd2c2c708e 100644 --- a/crypto/bf/Makefile +++ b/crypto/bf/Makefile @@ -12,8 +12,6 @@ MAKEFILE= Makefile AR= ar r BF_ENC= bf_enc.o -# or use -#DES_ENC= bx86-elf.o CFLAGS= $(INCLUDES) $(CFLAG) ASFLAGS= $(INCLUDES) $(ASFLAG) diff --git a/crypto/bn/Makefile b/crypto/bn/Makefile index d3799ba2a6..86fb707ec2 100644 --- a/crypto/bn/Makefile +++ b/crypto/bn/Makefile @@ -12,8 +12,6 @@ MAKEFILE= Makefile AR= ar r BN_ASM= bn_asm.o -# or use -#BN_ASM= bn86-elf.o CFLAGS= $(INCLUDES) $(CFLAG) ASFLAGS= $(INCLUDES) $(ASFLAG) diff --git a/crypto/des/Makefile b/crypto/des/Makefile index 81dbf0e3ef..ae982265fd 100644 --- a/crypto/des/Makefile +++ b/crypto/des/Makefile @@ -12,8 +12,6 @@ MAKEFILE= Makefile AR= ar r RANLIB= ranlib DES_ENC= des_enc.o fcrypt_b.o -# or use -#DES_ENC= dx86-elf.o yx86-elf.o CFLAGS= $(INCLUDES) $(CFLAG) ASFLAGS= $(INCLUDES) $(ASFLAG) diff --git a/crypto/rc5/Makefile b/crypto/rc5/Makefile index efb0f36b59..8a8b00eb89 100644 --- a/crypto/rc5/Makefile +++ b/crypto/rc5/Makefile @@ -12,8 +12,6 @@ MAKEFILE= Makefile AR= ar r RC5_ENC= rc5_enc.o -# or use -#DES_ENC= r586-elf.o CFLAGS= $(INCLUDES) $(CFLAG) ASFLAGS= $(INCLUDES) $(ASFLAG) @@ -44,15 +42,8 @@ lib: $(LIBOBJ) $(RANLIB) $(LIB) || echo Never mind. @touch lib -# ELF -r586-elf.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl - (cd asm; $(PERL) rc5-586.pl elf $(CFLAGS) > ../$@) -# COFF -r586-cof.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl - (cd asm; $(PERL) rc5-586.pl coff $(CFLAGS) > ../$@) -# a.out -r586-out.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl - (cd asm; $(PERL) rc5-586.pl a.out $(CFLAGS) > ../$@) +rc5-586.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl + $(PERL) asm/rc5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ files: $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |