[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / kerberosIV

File: [local] / src / kerberosIV / Attic / Makefile (download)

Revision 1.26, Tue Mar 9 00:01:42 1999 UTC (25 years, 3 months ago) by niklas
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6, OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.25: +7 -7 lines

Some style issues, make stuff neded before depend be built by beforedepend.
Also make them prereq in the case of make includes

#	$OpenBSD: Makefile,v 1.26 1999/03/09 00:01:42 niklas Exp $
#	from @(#)Makefile	5.1 (Berkeley) 6/25/90

SUBDIR=

.ifmake includes
SUBDIR+=include
.endif

SUBDIR+=acl krb kadm kafs kdb

SUBDIR+=ext_srvtab kadmin kadmind kdb_destroy kdb_init kdb_edit \
	kdb_util kdestroy kerberos kinit klist kprop kpropd ksrvtgt \
	ksrvutil kstash kauth kauthd

SUBDIR+=man doc

LIBDIRS=acl krb kadm kafs kdb

.include <bsd.own.mk> # for AFS

.if (${AFS} == "yes")
SUBDIR+=afslog
.endif

build:
	${MAKE} cleandir
	${MAKE} depend
	${SUDO} ${MAKE} includes
	for dir in ${LIBDIRS}; do \
		(cd ${.CURDIR}/$$dir && ${MAKE} && ${SUDO} ${MAKE} install) \
	done

.include <bsd.dep.mk>
.include <bsd.subdir.mk>