summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-04-02 18:36:52 +0200
committerRichard Levitte <levitte@openssl.org>2016-04-20 16:04:56 +0200
commit45c6e23c978da0b23df5e5a9a3c2e631b79ba497 (patch)
tree886bf62d10c214c2ea08d62f7cf04dbc8348fbdf /tools
parentf863ad0c59374ee8cc91dcae71ef60ceabc969f1 (diff)
downloadopenssl-new-45c6e23c978da0b23df5e5a9a3c2e631b79ba497.tar.gz
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 'tools')
-rw-r--r--tools/Makefile.in62
1 files changed, 0 insertions, 62 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in
deleted file mode 100644
index dec5f750cf..0000000000
--- a/tools/Makefile.in
+++ /dev/null
@@ -1,62 +0,0 @@
-#
-# OpenSSL/tools/Makefile
-#
-
-DIR= tools
-TOP= ..
-CC= cc
-INCLUDES= -I$(TOP) -I../../include
-CFLAG=-g
-MAKEFILE= Makefile
-
-CFLAGS= $(INCLUDES) $(CFLAG)
-
-GENERAL=Makefile
-APPS= c_rehash
-MISC_APPS= c_hash c_info c_issuer c_name
-
-all: apps
-
-apps: $(APPS)
-
-install:
- @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
- @for i in $(APPS) ; \
- do \
- (cp $$i $(DESTDIR)$(INSTALLTOP)/bin/$$i.new; \
- chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$i.new; \
- mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$i.new $(DESTDIR)$(INSTALLTOP)/bin/$$i ); \
- done;
- @for i in $(MISC_APPS) ; \
- do \
- (cp $$i $(DESTDIR)$(OPENSSLDIR)/misc/$$i.new; \
- chmod 755 $(DESTDIR)$(OPENSSLDIR)/misc/$$i.new; \
- mv -f $(DESTDIR)$(OPENSSLDIR)/misc/$$i.new $(DESTDIR)$(OPENSSLDIR)/misc/$$i ); \
- done;
-
-uninstall:
- @for i in $(APPS) ; \
- do \
- echo $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$i; \
- $(RM) $(DESTDIR)$(INSTALLTOP)/bin/$$i; \
- done;
- @for i in $(MISC_APPS) ; \
- do \
- echo $(RM) $(DESTDIR)$(OPENSSLDIR)/misc/$$i; \
- $(RM) $(DESTDIR)$(OPENSSLDIR)/misc/$$i; \
- done;
-
-errors:
-
-depend:
-
-clean:
- rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
-
-errors:
-
-c_rehash: c_rehash.in
- $(PERL) -I$(TOP) -Mconfigdata $(TOP)/util/dofile.pl -otools/Makefile c_rehash.in > c_rehash.new
- mv c_rehash.new c_rehash
-
-# DO NOT DELETE THIS LINE -- make depend depends on it.