diff options
author | 2020-06-02 14:41:13 +0000 | |
---|---|---|
committer | 2020-06-02 14:41:13 +0000 | |
commit | 7ed870dc6f9d87a90e6a89c65674732eb2e134ad (patch) | |
tree | eecd4e70763fb02cbf9377541a2ad11e9a9e8624 | |
parent | Remove const modifier in return type of tls13_handshake_active_state() (diff) | |
download | wireguard-openbsd-7ed870dc6f9d87a90e6a89c65674732eb2e134ad.tar.xz wireguard-openbsd-7ed870dc6f9d87a90e6a89c65674732eb2e134ad.zip |
less convoluted Makefile, removes useless redirections
okay tb@, florian@
-rw-r--r-- | usr.sbin/unbound/Makefile.bsd-wrapper | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/usr.sbin/unbound/Makefile.bsd-wrapper b/usr.sbin/unbound/Makefile.bsd-wrapper index 5ed6c1e01a2..ff9bc927592 100644 --- a/usr.sbin/unbound/Makefile.bsd-wrapper +++ b/usr.sbin/unbound/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.18 2019/12/21 21:40:01 espie Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.19 2020/06/02 14:41:13 espie Exp $ .include <bsd.own.mk> @@ -37,16 +37,10 @@ MAN= doc/unbound.8 \ doc/unbound-control.8 \ doc/unbound-host.1 -all: gnu +all: ${.OBJDIR}/config.status + exec ${MAKE} -.ifndef NOMAN -${MANALL} ${PSALL}: ${MAN} - -${MAN}: gnu -.endif - -gnu: ${.OBJDIR}/config.status - ${MAKE} +${MAN}: ${.OBJDIR}/config.status .FORCE: .IGNORE @@ -81,7 +75,6 @@ install: maninstall ${file} ${DESTDIR}${BINDIR} .endfor -BEFOREMAN= ${.OBJDIR}/config.status CLEANFILES+= ${MAN} dnstap/dnstap_config.h doc/example.conf doc/libunbound.3 \ smallapp/unbound-control-setup.sh dnscrypt/dnscrypt_config.h |