aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1994-11-20 23:39:44 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1994-11-20 23:39:44 +0000
commit1b6e011b0d746ca42b72a441821038a256ddb35a (patch)
tree51775d53a518f2d0a59c08dab0a6a1066bdf8fd2
parentfb851cf86c7fa9694cfd74a2bfcd6d39deef1291 (diff)
Add a `help-distribute' target which does a `distribute' in our subdirs,
then goes into all the directories a `make kprog' would have and does it there, too. This should complete the krbdist, except that P-HK has to figure out where in his build process he wants to build and install this stuff.
Notes
Notes: svn path=/head/; revision=4718
-rw-r--r--eBones/Makefile15
1 files changed, 14 insertions, 1 deletions
diff --git a/eBones/Makefile b/eBones/Makefile
index 3bcc188d7402..d086a4a56c54 100644
--- a/eBones/Makefile
+++ b/eBones/Makefile
@@ -1,5 +1,5 @@
# From: @(#)Makefile 5.1 (Berkeley) 6/25/90
-# $Id: Makefile,v 1.2 1994/10/06 00:32:42 wollman Exp $
+# $Id: Makefile,v 1.3 1994/10/06 00:48:55 wollman Exp $
SUBDIR= include
@@ -38,4 +38,17 @@ bootstrap:
rm -f /usr/lib/libkdb.so.4.0
${MAKE} ${MFLAGS} depend all install kprog
+help-distribute: distribute
+ cd ${SDIR}/bin/rcp; ${MAKE} ${MFLAGS} distribute
+ cd ${SDIR}/libexec/rlogind; ${MAKE} ${MFLAGS} distribute
+ cd ${SDIR}/libexec/rshd; ${MAKE} ${MFLAGS} distribute
+ cd ${SDIR}/usr.bin/login; ${MAKE} ${MFLAGS} distribute
+ cd ${SDIR}/usr.bin/passwd; ${MAKE} ${MFLAGS} distribute
+ cd ${SDIR}/usr.bin/rlogin; ${MAKE} ${MFLAGS} distribute
+ cd ${SDIR}/usr.bin/rsh; ${MAKE} ${MFLAGS} distribute
+ cd ${SDIR}/usr.bin/su; ${MAKE} ${MFLAGS} distribute
+ cd ${SDIR}/libexec/kpasswdd; ${MAKE} ${MFLAGS} distribute
+
+
.include <bsd.subdir.mk>
+