diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1995-12-16 21:10:34 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1995-12-16 21:10:34 +0000 |
commit | fc6f8f9690028601db5c3f18884e944e81ea164e (patch) | |
tree | 48ef45172935d1739cbf27fad10fdf001ea7b65c /Makefile | |
parent | 4b63dbc5c878393c10c8ab7d3263123de66702af (diff) |
Add support for building kerberosIV
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |