summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/tools
diff options
context:
space:
mode:
authorafresh1 <afresh1@openbsd.org>2014-04-17 19:19:14 +0000
committerafresh1 <afresh1@openbsd.org>2014-04-17 19:19:14 +0000
commit8ffa17aa3e7ef6f8b4fc8bb8c919fb03edd085e9 (patch)
treea3622f805c0236bec615cdd0f4a9872c5efe1386 /lib/libssl/src/tools
parentwhitespace (diff)
downloadwireguard-openbsd-8ffa17aa3e7ef6f8b4fc8bb8c919fb03edd085e9.tar.xz
wireguard-openbsd-8ffa17aa3e7ef6f8b4fc8bb8c919fb03edd085e9.zip
expunge more of the old build system
ok deraadt miod
Diffstat (limited to 'lib/libssl/src/tools')
-rw-r--r--lib/libssl/src/tools/Makefile59
1 files changed, 0 insertions, 59 deletions
diff --git a/lib/libssl/src/tools/Makefile b/lib/libssl/src/tools/Makefile
deleted file mode 100644
index bb6fb71f3eb..00000000000
--- a/lib/libssl/src/tools/Makefile
+++ /dev/null
@@ -1,59 +0,0 @@
-#
-# OpenSSL/tools/Makefile
-#
-
-DIR= tools
-TOP= ..
-CC= cc
-INCLUDES= -I$(TOP) -I../../include
-CFLAG=-g
-MAKEFILE= Makefile
-
-CFLAGS= $(INCLUDES) $(CFLAG)
-
-GENERAL=Makefile
-TEST=
-APPS= c_rehash
-MISC_APPS= c_hash c_info c_issuer c_name
-
-all:
-
-install:
- @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
- @for i in $(APPS) ; \
- do \
- (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
- chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
- mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
- done;
- @for i in $(MISC_APPS) ; \
- do \
- (cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \
- chmod 755 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \
- mv -f $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i ); \
- done;
-
-files:
- $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
-
-links:
-
-lint:
-
-tags:
-
-errors:
-
-depend:
-
-dclean:
- $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
- mv -f Makefile.new $(MAKEFILE)
- rm -f c_rehash
-
-clean:
- rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
-
-errors:
-
-# DO NOT DELETE THIS LINE -- make depend depends on it.