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.148 retrieving revision 1.150 diff -u -p -r1.148 -r1.150 --- src/Makefile 2001/11/01 15:48:39 1.148 +++ src/Makefile 2001/11/01 16:34:21 1.150 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.148 2001/11/01 15:48:39 jmc Exp $ +# $NetBSD: Makefile,v 1.150 2001/11/01 16:34:21 tv Exp $ # This is the top-level makefile for building NetBSD. For an outline of # how to build a snapshot or release, as well as other release engineering @@ -58,8 +58,6 @@ .MAKEFLAGS: -m ${.CURDIR}/share/mk .endif -MKOBJDIRS ?= no - .include # Sanity check: make sure that "make build" is not invoked simultaneously @@ -104,7 +102,7 @@ whatis.db: # Targets (in order!) called by "make build". -.if ${MKOBJDIRS:Uno} != "no" +.if ${MKOBJDIRS} != "no" BUILDTARGETS+= obj .endif .if !defined(UPDATE) && !defined(NOCLEANDIR) @@ -180,17 +178,6 @@ dependall-distrib depend-distrib all-dis .include -# Rules for building the BUILDING.* documentation files. - -build-docs: ${.CURDIR}/BUILDING.txt ${.CURDIR}/BUILDING.html - -.SUFFIXES: .mdoc .html .txt - -.mdoc.html: ${.CURDIR}/Makefile - groff -mdoc2html -Tlatin1 -P-b -P-u -P-o -ww -mtty-char $< >$@ - -# The awk expression changes line endings from LF to CR-LF to make -# this readable on many more platforms than just Un*x. -.mdoc.txt: ${.CURDIR}/Makefile - groff -mdoc -Tascii -P-b -P-u -P-o $< | \ - awk 'BEGIN{ORS="\r\n"}{print}' >$@ +build-docs: ${.CURDIR}/BUILDING +${.CURDIR}/BUILDING: BUILDING.mdoc + groff -mdoc -Tascii -P-b -P-u -P-o $> >$@