diff options
author | appro <appro> | 2005-02-06 13:23:28 +0000 |
---|---|---|
committer | appro <appro> | 2005-02-06 13:23:28 +0000 |
commit | a33c3dce72d4e90d473783e0b15a3e9ed65548b9 (patch) | |
tree | 0181305f46b6278b52403ecf97494a70ddd2a957 /crypto/cast | |
parent | 0d5bddc7760ff7db3cdebbb3f14e3485861a9634 (diff) | |
download | openssl-a33c3dce72d4e90d473783e0b15a3e9ed65548b9.tar.gz |
This patch was "ignited" by OpenBSD 3>=4 support. They've switched to ELF
and GNU binutils, but kept BSD make... And I took the opportunity to
unify other targets to this common least denominator...
Diffstat (limited to 'crypto/cast')
-rw-r--r-- | crypto/cast/Makefile.ssl | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/crypto/cast/Makefile.ssl b/crypto/cast/Makefile.ssl index 6a2aba2d7..5ff5b7a71 100644 --- a/crypto/cast/Makefile.ssl +++ b/crypto/cast/Makefile.ssl @@ -18,11 +18,6 @@ MAKEFILE= Makefile.ssl AR= ar r CAST_ENC=c_enc.o -# or use -#CAST_ENC=asm/cx86-elf.o -#CAST_ENC=asm/cx86-out.o -#CAST_ENC=asm/cx86-sol.o -#CAST_ENC=asm/cx86bdsi.o CFLAGS= $(INCLUDES) $(CFLAG) ASFLAGS= $(INCLUDES) $(ASFLAG) @@ -54,10 +49,10 @@ lib: $(LIBOBJ) @touch lib # ELF -asm/cx86-elf.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl +cx86-elf.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl (cd asm; $(PERL) cast-586.pl elf $(CLAGS) $(PROCESSOR) > ../$@) # COFF -asm/cx86-cof.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl +cx86-cof.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl (cd asm; $(PERL) cast-586.pl coff $(CLAGS) $(PROCESSOR) > ../$@) # a.out cx86-out.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl @@ -95,7 +90,7 @@ dclean: mv -f Makefile.new $(MAKEFILE) clean: - rm -f asm/cx86unix.cpp asm/*.s asm/*.o *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff + rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff # DO NOT DELETE THIS LINE -- make depend depends on it. |