From 89d0989f1798f2a1e94ede3f6eb7b75c416ddbc4 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Tue, 1 Oct 2002 09:58:50 +0000 Subject: [PATCH] Add pc98 to universe target. Remember about /usr/obj and look for conf/NOTES in the right place. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 13116c28ac0b..54b1262a1556 100644 --- a/Makefile +++ b/Makefile @@ -221,14 +221,14 @@ universe: @echo "--------------------------------------------------------------" @echo ">>> make universe started on ${STARTTIME}" @echo "--------------------------------------------------------------" -.for arch in i386 sparc64 alpha ia64 +.for arch in i386 sparc64 pc98 alpha ia64 @printf ">> ${arch} started on `LC_ALL=C date`\n" -cd ${.CURDIR} && make ${JFLAG} buildworld TARGET_ARCH=${arch} \ __MAKE_CONF=/dev/null \ > _.${arch}.buildworld 2>&1 @printf ">> ${arch} buildworld ended on `LC_ALL=C date`\n" -.if exists(sys/${arch}/conf/NOTES) - cd ${.CURDIR}/sys/${arch}/conf && make LINT \ +.if exists(${.CURDIR}/sys/${arch}/conf/NOTES) + -cd ${.CURDIR}/sys/${arch}/conf && make LINT \ > _.${arch}.makeLINT 2>&1 .endif cd ${.CURDIR} && make buildkernels TARGET_ARCH=${arch} JFLAG="${JFLAG}"