freebsd-src/eBones/Makefile
Garrett Wollman 1b6e011b0d 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.
1994-11-20 23:39:44 +00:00

55 lines
1.7 KiB
Makefile

# From: @(#)Makefile 5.1 (Berkeley) 6/25/90
# $Id: Makefile,v 1.3 1994/10/06 00:48:55 wollman Exp $
SUBDIR= include
SUBDIR+= des compile_et acl ext_srvtab include kdb kdb_destroy kdb_edit \
kdb_init kdb_util kdestroy kerberos kinit klist krb ksrvtgt \
kstash man
#
# MISSING AND PROBABLY BOGUS: register registerd make_keypair
#
SDIR= ${.CURDIR}/..
CODAI?= ${MAKE} ${MFLAGS} cleandir; \
${MAKE} ${MFLAGS} obj; ${MAKE} ${MFLAGS} depend all install
# These are the programs which depend on kerberos
# It's nice to know who they are
kprog:
cd ${SDIR}/bin/rcp; ${CODAI}
cd ${SDIR}/libexec/rlogind; ${CODAI}
cd ${SDIR}/libexec/rshd; ${CODAI}
cd ${SDIR}/usr.bin/login; ${CODAI}
cd ${SDIR}/usr.bin/passwd; ${CODAI}
cd ${SDIR}/usr.bin/rlogin; ${CODAI}
cd ${SDIR}/usr.bin/rsh; ${CODAI}
cd ${SDIR}/usr.bin/su; ${CODAI}
cd ${SDIR}/libexec/kpasswdd; ${CODAI}
bootstrap:
cd include; ${MAKE} ${MFLAGS} install
${MAKE} ${MFLAGS} cleandir
${MAKE} ${MFLAGS} obj
@echo removing old 1.1.5 Kerberos libraries
rm -f /usr/lib/libkrb.so.4.0
rm -f /usr/lib/libdes.so.4.0
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>