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 --- engines/Makefile.in | 119 ---------------------------------------------- engines/afalg/Makefile.in | 75 ----------------------------- 2 files changed, 194 deletions(-) delete mode 100644 engines/Makefile.in delete mode 100644 engines/afalg/Makefile.in (limited to 'engines') diff --git a/engines/Makefile.in b/engines/Makefile.in deleted file mode 100644 index e37c4e2be9..0000000000 --- a/engines/Makefile.in +++ /dev/null @@ -1,119 +0,0 @@ -# -# OpenSSL/engines/Makefile -# - -DIR= engines -TOP= .. -CC= cc -INCLUDES= -I../include -CFLAG=-g -MAKEFILE= Makefile -AR= ar r - -RECURSIVE_MAKE= for i in $${ENGDIRS:-$(ENGDIRS)} ; do \ - (cd $$i && echo "making $$target in $(DIR)/$$i..." && \ - $(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \ - done; - -PADLOCK_ASM_OBJ= - -PLIB_LDFLAG= -EX_LIBS= - -CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG) -ASFLAGS= $(INCLUDES) $(ASFLAG) $(SHARED_CFLAG) -AFLAGS= $(ASFLAGS) - -GENERAL=Makefile engines.com install.com engine_vector.mar - -LIB=$(TOP)/libcrypto.a -LIBNAMES= padlock capi dasync -LIBSRC= \ - e_padlock.c \ - e_capi.c \ - e_dasync.c -LIBOBJ= \ - e_padlock.o \ - e_capi.o \ - e_dasync.o \ - $(PADLOCK_ASM_OBJ) - -TESTLIBNAMES= ossltest -TESTLIBSRC= e_ossltest.c -TESTLIBOBJ= e_ossltest.o - -SRC= $(LIBSRC) - -HEADER= \ - e_capi_err.c e_capi_err.h \ - e_ossltest_err.c e_ossltest_err.h \ - e_dasync_err.c e_dasync_err.h - -ALL= $(GENERAL) $(SRC) $(HEADER) - -top: - (cd ..; $(MAKE) DIRS=$(DIR) all) - -all: lib subdirs - -lib: $(LIBOBJ) $(TESTLIBOBJ) - @if [ "$(DYNAMIC_ENGINES)" = 1 ]; then \ - set -e; \ - for l in $(LIBNAMES) $(TESTLIBNAMES); do \ - $(MAKE) -f ../Makefile.shared -e \ - LIBNAME=$$l LIBEXTRAS="e_$$l*.o" \ - LIBDEPS='$(PLIB_LDFLAG) -L.. -lcrypto $(EX_LIBS)' \ - link_dso.$(SHLIB_TARGET); \ - done; \ - else \ - $(AR) $(LIB) $(LIBOBJ); \ - $(RANLIB) $(LIB) || echo Never mind.; \ - fi; \ - touch lib - -e_padlock-x86.s: asm/e_padlock-x86.pl - $(PERL) asm/e_padlock-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) $@ -e_padlock-x86_64.s: asm/e_padlock-x86_64.pl - $(PERL) asm/e_padlock-x86_64.pl $(PERLASM_SCHEME) $@ - -subdirs: - @target=all; $(RECURSIVE_MAKE) - -install: - @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... - @if [ -n "$(SHARED_LIBS)" ]; then \ - set -e; \ - $(PERL) $(TOP)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines; \ - for l in $(LIBNAMES); do \ - cp $${l}$(DSO_EXT) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$${l}$(DSO_EXT).new; \ - chmod 555 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$${l}$(DSO_EXT).new; \ - mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$${l}$(DSO_EXT).new $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$${l}$(DSO_EXT); \ - done; \ - fi - @target=install; $(RECURSIVE_MAKE) - -uninstall: - @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... - @if [ -n "$(SHARED_LIBS)" ]; then \ - set -e; \ - for l in $(LIBNAMES); do \ - $(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$${l}$(DSO_EXT); \ - done; \ - fi - @target=install; $(RECURSIVE_MAKE) - -errors: - set -e; for l in $(LIBNAMES); do \ - $(PERL) ../util/mkerr.pl -conf e_$$l.ec \ - -nostatic -staticloader -write e_$$l.c; \ - done - -depend: - @[ -z "$(THIS)" ] || $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC) $(TESTLIBSRC) - @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) ) - -clean: - rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff - @target=clean; $(RECURSIVE_MAKE) - -# DO NOT DELETE THIS LINE -- make depend depends on it. diff --git a/engines/afalg/Makefile.in b/engines/afalg/Makefile.in deleted file mode 100644 index 8a7408fbcb..0000000000 --- a/engines/afalg/Makefile.in +++ /dev/null @@ -1,75 +0,0 @@ -# -# OpenSSL/engines/afalg/Makefile -# - -DIR= afalg -TOP= ../.. -CC= cc -INCLUDES= -I../../include -CFLAG=-g -MAKEFILE= Makefile -AR= ar r - -CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG) -LIB=$(TOP)/libcrypto.a - -LIBNAME=afalg -LIBSRC= e_afalg.c -LIBOBJ= e_afalg.o e_afalg_err.o - -SRC= $(LIBSRC) - -top: - (cd $(TOP); $(MAKE) DIRS=engines sub_all) - -all: errors lib - -errors: - $(PERL) $(TOP)/util/mkerr.pl -conf e_afalg.ec -nostatic -write $(SRC) - -lib: $(LIBOBJ) - @if [ "$(DYNAMIC_ENGINES)" = 1 ]; then \ - $(MAKE) -f $(TOP)/Makefile.shared -e \ - LIBNAME=$(LIBNAME) \ - LIBEXTRAS='$(LIBOBJ)' \ - LIBDEPS='-L$(TOP) -lcrypto' \ - link_dso.$(SHLIB_TARGET); \ - else \ - $(AR) $(LIB) $(LIBOBJ); \ - fi - @touch lib - -install: - @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... - @if [ -n "$(SHARED_LIBS)" ]; then \ - set -e; \ - $(PERL) $(TOP)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines; \ - cp $(LIBNAME)$(DSO_EXT) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$(LIBNAME)$(DSO_EXT).new; \ - chmod 555 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$(LIBNAME)$(DSO_EXT).new; \ - mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$(LIBNAME)$(DSO_EXT).new $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$(LIBNAME)$(DSO_EXT); \ - fi - - -depend: - @[ -z "$(THIS)" ] || $(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) $(TESTLIBSRC) - -clean: - rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff *.so *.dll *.dylib - -# DO NOT DELETE THIS LINE -- make depend depends on it. -e_afalg.o: e_afalg.c ../../include/openssl/engine.h \ - ../../include/openssl/opensslconf.h ../../include/openssl/bn.h \ - ../../include/openssl/e_os2.h ../../include/openssl/ossl_typ.h \ - ../../include/openssl/crypto.h ../../include/openssl/stack.h \ - ../../include/openssl/safestack.h ../../include/openssl/opensslv.h \ - ../../include/openssl/symhacks.h ../../include/openssl/rsa.h \ - ../../include/openssl/asn1.h ../../include/openssl/bio.h \ - ../../include/openssl/dsa.h ../../include/openssl/dh.h \ - ../../include/openssl/ec.h ../../include/openssl/rand.h \ - ../../include/openssl/ui.h ../../include/openssl/err.h \ - ../../include/openssl/lhash.h ../../include/openssl/x509.h \ - ../../include/openssl/buffer.h ../../include/openssl/evp.h \ - ../../include/openssl/objects.h ../../include/openssl/obj_mac.h \ - ../../include/openssl/sha.h ../../include/openssl/x509_vfy.h \ - ../../include/openssl/pkcs7.h ../../include/openssl/async.h e_afalg.h \ - e_afalg_err.h -- cgit v1.2.3