diff options
author | wollman <wollman@FreeBSD.org> | 1994-11-20 23:39:44 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-11-20 23:39:44 +0000 |
commit | a1316034d1e0c34fa15ebe2dd03566009e75884b (patch) | |
tree | 51775d53a518f2d0a59c08dab0a6a1066bdf8fd2 /eBones/Makefile | |
parent | da4cd7368370846ee3e1f66844ef172ff2cf2cc0 (diff) | |
download | FreeBSD-src-a1316034d1e0c34fa15ebe2dd03566009e75884b.zip FreeBSD-src-a1316034d1e0c34fa15ebe2dd03566009e75884b.tar.gz |
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.
Diffstat (limited to 'eBones/Makefile')
-rw-r--r-- | eBones/Makefile | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/eBones/Makefile b/eBones/Makefile index 3bcc188..d086a4a 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> + |