From 45c6e23c978da0b23df5e5a9a3c2e631b79ba497 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 2 Apr 2016 18:36:52 +0200 Subject: 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 --- crypto/async/Makefile.in | 63 ------------------------------------------------ 1 file changed, 63 deletions(-) delete mode 100644 crypto/async/Makefile.in (limited to 'crypto/async') diff --git a/crypto/async/Makefile.in b/crypto/async/Makefile.in deleted file mode 100644 index aa85749899..0000000000 --- a/crypto/async/Makefile.in +++ /dev/null @@ -1,63 +0,0 @@ -# -# OpenSSL/crypto/async/Makefile -# - -DIR= async -TOP= ../.. -CC= cc -INCLUDES= -CFLAG=-g -MAKEFILE= Makefile -AR= ar r - -CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG) - -GENERAL=Makefile -TEST= -APPS= - -LIB=$(TOP)/libcrypto.a -LIBSRC=async.c async_wait.c async_err.c arch/async_posix.c arch/async_win.c arch/async_null.c -LIBOBJ=async.o async_wait.o async_err.o arch/async_posix.o arch/async_win.o arch/async_null.o - -SRC= $(LIBSRC) - -HEADER= async_locl.h arch/async_posix.h arch/async_win.h arch/async_null.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 - -links: - @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) - @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) - @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) - -install: - @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... - @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ - do \ - (cp $$i $(DESTDIR)$(INSTALLTOP)/include/openssl/$$i; \ - chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$i ); \ - done; - -depend: - $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC) - -clean: - rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff - rm -f arch/*.o arch/*.obj arch/lib arch/tags arch/core arch/.pure arch/.nfs* arch/*.old arch/*.bak arch/fluff - -# Different flavours of make disagree on where output goes -.c.o: - $(CC) $(CFLAGS) -c $< -o $@ - -# DO NOT DELETE THIS LINE -- make depend depends on it. -- cgit v1.2.3