Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/Makefile,v rcsdiff: /ftp/cvs/cvsroot/src/Makefile,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.65 retrieving revision 1.68 diff -u -p -r1.65 -r1.68 --- src/Makefile 1998/08/22 22:06:23 1.65 +++ src/Makefile 1998/09/29 06:59:53 1.68 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.65 1998/08/22 22:06:23 tv Exp $ +# $NetBSD: Makefile,v 1.68 1998/09/29 06:59:53 lukem Exp $ .include # for configuration variables. @@ -42,13 +42,15 @@ beforeinstall: .endif afterinstall: -.ifndef NOMAN +.if !defined(NOMAN) && !defined(NOSHARE) (cd ${.CURDIR}/share/man && ${MAKE} makedb) .endif build: beforeinstall +.if !defined(NOSHARE) (cd ${.CURDIR}/share/mk && ${MAKE} install) (cd ${.CURDIR}/share/tmac && ${MAKE} && ${MAKE} install) +.endif .if !defined(UPDATE) ${MAKE} cleandir .endif @@ -59,12 +61,11 @@ build: beforeinstall ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install) (cd ${.CURDIR}/gnu/lib && \ ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install) -.if defined(USE_EGCS) && (${HAVE_GCC28} != "") +.if defined(USE_EGCS) && !empty(HAVE_GCC28) (cd ${.CURDIR}/gnu/lib/libgcc && \ ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install) .else -.if (${MACHINE_ARCH} != "alpha") && \ - (${MACHINE_ARCH} != "powerpc") +.if (${MACHINE_ARCH} != "powerpc") (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc && \ ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install) .endif