=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/Makefile,v retrieving revision 1.6 retrieving revision 1.11 diff -u -r1.6 -r1.11 --- src/Makefile 1996/04/23 09:47:22 1.6 +++ src/Makefile 1996/06/02 07:22:46 1.11 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 1996/04/23 09:47:22 mickey Exp $ +# $OpenBSD: Makefile,v 1.11 1996/06/02 07:22:46 tholo Exp $ # $NetBSD: Makefile,v 1.25 1995/10/09 02:11:28 thorpej Exp $ .include # for NOMAN, if it's there. @@ -24,13 +24,17 @@ @(cd ${.CURDIR}/regress && ${MAKE} regress) .endif -#beforeinstall: -#.ifndef DESTDIR -# (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs) -#.else -# (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs) -#.endif +includes: + (cd ${.CURDIR}/include; ${MAKE} includes) +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 (cd ${.CURDIR}/share/man && ${MAKE} makedb) @@ -38,9 +42,9 @@ build: (cd ${.CURDIR}/share/mk && ${MAKE} install) - (cd ${.CURDIR}/include && ${MAKE} install) + (cd ${.CURDIR}/include; ${MAKE} includes) .if defined(KERBEROS) - (cd ${.CURDIR}/kerberosIV/include && ${MAKE} install) + (cd ${.CURDIR}/kerberosIV/include && ${MAKE} includes) .endif ${MAKE} cleandir (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)