summaryrefslogtreecommitdiffstats
path: root/crypto/ripemd/Makefile.ssl
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2003-01-12 16:35:30 +0000
committerAndy Polyakov <appro@openssl.org>2003-01-12 16:35:30 +0000
commitfb7060706444623f0d2b000952a077a80ad91dba (patch)
tree545c57be137c3545a6d9e4cebac5579de6ef2287 /crypto/ripemd/Makefile.ssl
parent959ba907dfb66d0d1b401a85737900511705df73 (diff)
IA-32 assembler support enhancements from HEAD branch: unified ELF,
support for SCO/Caldera targets and for Cygwin shared build.
Diffstat (limited to 'crypto/ripemd/Makefile.ssl')
-rw-r--r--crypto/ripemd/Makefile.ssl12
1 files changed, 3 insertions, 9 deletions
diff --git a/crypto/ripemd/Makefile.ssl b/crypto/ripemd/Makefile.ssl
index 6f1a9c59a2..3583dfdcaf 100644
--- a/crypto/ripemd/Makefile.ssl
+++ b/crypto/ripemd/Makefile.ssl
@@ -47,14 +47,8 @@ lib: $(LIBOBJ)
@touch lib
# elf
-asm/rm86-elf.o: asm/rm86unix.cpp
- $(CPP) -DELF -x c asm/rm86unix.cpp | as -o asm/rm86-elf.o
-
-# solaris
-asm/rm86-sol.o: asm/rm86unix.cpp
- $(CC) -E -DSOL asm/rm86unix.cpp | sed 's/^#.*//' > asm/rm86-sol.s
- as -o asm/rm86-sol.o asm/rm86-sol.s
- rm -f asm/rm86-sol.s
+asm/rm86-elf.s: asm/rmd-586.pl ../perlasm/x86asm.pl
+ (cd asm; $(PERL) rmd-586.pl elf $(CFLAGS) > rm86-elf.s)
# a.out
asm/rm86-out.o: asm/rm86unix.cpp
@@ -99,7 +93,7 @@ dclean:
mv -f Makefile.new $(MAKEFILE)
clean:
- rm -f asm/rm86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
+ rm -f asm/rm86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
# DO NOT DELETE THIS LINE -- make depend depends on it.