diff options
author | Andy Polyakov <appro@openssl.org> | 2004-07-23 23:27:10 +0000 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2004-07-23 23:27:10 +0000 |
commit | 33c3ecf741942be48faf701edc7893857d276b75 (patch) | |
tree | b09e78b54df93cf165e873bd4f5e95f7580a4007 /crypto/bn | |
parent | 5bd4c26057176fc29f1c394bc6d012ef51b7c8bb (diff) | |
download | openssl-new-33c3ecf741942be48faf701edc7893857d276b75.tar.gz |
Build-n-link new IA-64 modules on Linux and HP-UX.
Diffstat (limited to 'crypto/bn')
-rw-r--r-- | crypto/bn/Makefile.ssl | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/crypto/bn/Makefile.ssl b/crypto/bn/Makefile.ssl index 61d9bf3493..bc786ee611 100644 --- a/crypto/bn/Makefile.ssl +++ b/crypto/bn/Makefile.ssl @@ -98,16 +98,8 @@ asm/sparcv8.o: asm/sparcv8.S asm/sparcv8plus.o: asm/sparcv8plus.S -asm/ia64.o: asm/ia64.S - -# Some compiler drivers (most notably HP-UX and Intel C++) don't -# understand .S extension:-( I wish I could pipe output from cc -E, -# but it's too compiler driver/ABI dependent to cover with a single -# rule... <appro@fy.chalmers.se> -asm/ia64-cpp.o: asm/ia64.S - $(CC) $(ASFLAGS) -E asm/ia64.S > /tmp/ia64.$$$$.s && \ - $(CC) $(ASFLAGS) -c -o asm/ia64-cpp.o /tmp/ia64.$$$$.s; \ - rm -f /tmp/ia64.$$$$.s +asm/ia64.s: asm/ia64.S + $(CC) $(CFLAGS) -E asm/ia64.S > $@ asm/x86_64-gcc.o: asm/x86_64-gcc.c @@ -165,7 +157,7 @@ dclean: mv -f Makefile.new $(MAKEFILE) clean: - rm -f asm/co86unix.cpp asm/bn86unix.cpp asm/*-elf.* *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s + rm -f asm/co86unix.cpp asm/bn86unix.cpp asm/*-elf.* asm/ia64.[so] *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s # DO NOT DELETE THIS LINE -- make depend depends on it. |