diff options
author | Richard Levitte <levitte@openssl.org> | 2016-04-02 18:36:52 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-04-20 16:04:56 +0200 |
commit | 45c6e23c978da0b23df5e5a9a3c2e631b79ba497 (patch) | |
tree | 886bf62d10c214c2ea08d62f7cf04dbc8348fbdf /crypto/md5 | |
parent | Fix no-sock on Windows (diff) | |
download | openssl-45c6e23c978da0b23df5e5a9a3c2e631b79ba497.tar.xz openssl-45c6e23c978da0b23df5e5a9a3c2e631b79ba497.zip |
Remove --classic build entirely
The Unix build was the last to retain the classic build scheme. The
new unified scheme has matured enough, even though some details may
need polishing.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/md5')
-rw-r--r-- | crypto/md5/Makefile.in | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/crypto/md5/Makefile.in b/crypto/md5/Makefile.in deleted file mode 100644 index 48ddab350b..0000000000 --- a/crypto/md5/Makefile.in +++ /dev/null @@ -1,61 +0,0 @@ -# -# OpenSSL/crypto/md5/Makefile -# - -DIR= md5 -TOP= ../.. -CC= cc -CPP= $(CC) -E -INCLUDES=-I.. -I$(TOP) -I../../include -CFLAG=-g -MAKEFILE= Makefile -AR= ar r - -MD5_ASM_OBJ= - -CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG) -ASFLAGS= $(INCLUDES) $(ASFLAG) $(SHARED_CFLAG) -AFLAGS= $(ASFLAGS) - -GENERAL=Makefile - -LIB=$(TOP)/libcrypto.a -LIBSRC=md5_dgst.c md5_one.c -LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ) - -SRC= $(LIBSRC) - -HEADER= md5_locl.h - -ALL= $(GENERAL) $(SRC) $(HEADER) - -top: - (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) - -all: lib - -lib: $(LIBOBJ) - $(AR) $(LIB) $(LIBOBJ) - $(RANLIB) $(LIB) || echo Never mind. - @touch lib - -md5-586.s: asm/md5-586.pl ../perlasm/x86asm.pl - $(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) $@ - -md5-x86_64.s: asm/md5-x86_64.pl - $(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) $@ - -md5-ia64.s: asm/md5-ia64.S - $(CC) $(CFLAGS) -E asm/md5-ia64.S | \ - $(PERL) -ne 's/;\s+/;\n/g; print;' > $@ - -md5-sparcv9.S: asm/md5-sparcv9.pl - $(PERL) asm/md5-sparcv9.pl $(PERLASM_SCHEME) $@ - -depend: - $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC) - -clean: - rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff - -# DO NOT DELETE THIS LINE -- make depend depends on it. |