summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortholo <tholo@openbsd.org>1995-12-16 21:10:33 +0000
committertholo <tholo@openbsd.org>1995-12-16 21:10:33 +0000
commitb1b0ccd80bb160b1666a846b26f1c13df0d024e3 (patch)
tree57735de853cfa3f745dcd46753c130b68e978a75
parentAdd a build target (diff)
downloadwireguard-openbsd-b1b0ccd80bb160b1666a846b26f1c13df0d024e3.tar.xz
wireguard-openbsd-b1b0ccd80bb160b1666a846b26f1c13df0d024e3.zip
Add support for building kerberosIV
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2469452ddff..8c004a644ac 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,10 @@ SUBDIR+= sys
SUBDIR+= domestic
.endif
+.if exists(kerberosIV)
+SUBDIR+= kerberosIV
+.endif
+
.if exists(regress)
.ifmake !(install)
SUBDIR+= regress
@@ -40,7 +44,7 @@ build:
(cd ${.CURDIR}/domestic/libcrypt && ${MAKE} depend && ${MAKE} && ${MAKE} install)
.endif
.if exists(kerberosIV)
- (cd ${.CURDIR}/kerberosIV && ${MAKE} depend && ${MAKE} && ${MAKE} install)
+ (cd ${.CURDIR}/kerberosIV && ${MAKE} build)
.endif
${MAKE} depend && ${MAKE} && ${MAKE} install