=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/Makefile,v retrieving revision 1.3 retrieving revision 1.13 diff -u -r1.3 -r1.13 --- src/Makefile 1995/12/17 05:53:11 1.3 +++ src/Makefile 1996/12/13 15:45:58 1.13 @@ -1,13 +1,18 @@ +# $OpenBSD: Makefile,v 1.13 1996/12/13 15:45:58 deraadt Exp $ # $NetBSD: Makefile,v 1.25 1995/10/09 02:11:28 thorpej Exp $ +.include # for NOMAN, if it's there. + # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games SUBDIR+= gnu -SUBDIR+= sys +SUBDIR+= sys lkm +.if defined(KERBEROS) SUBDIR+= kerberosIV +.endif .if exists(regress) .ifmake !(install) @@ -19,10 +24,16 @@ @(cd ${.CURDIR}/regress && ${MAKE} regress) .endif -.include # for NOMAN, if it's there. +includes: + (cd ${.CURDIR}/include; ${MAKE} includes) -#beforeinstall: -# (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs) +beforeinstall: +.ifndef DESTDIR + (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs) +.else + (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs) +.endif + (cd ${.CURDIR}/include; ${MAKE} includes) afterinstall: .ifndef NOMAN @@ -30,11 +41,17 @@ .endif build: - (cd ${.CURDIR}/include && ${MAKE} install) + (cd ${.CURDIR}/share/mk && ${MAKE} install) + (cd ${.CURDIR}/include; ${MAKE} includes) ${MAKE} cleandir (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) +.if (${MACHINE_ARCH} == "mips") + ldconfig # Fuck. +.endif +.if defined(KERBEROS) (cd ${.CURDIR}/kerberosIV && ${MAKE} build) +.endif ${MAKE} depend && ${MAKE} && ${MAKE} install .include