From owner-cvs-sys Sun Jul 12 11:58:20 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA02005 for cvs-sys-outgoing; Sun, 12 Jul 1998 11:58:20 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA01976; Sun, 12 Jul 1998 11:58:14 -0700 (PDT) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id LAA14223; Sun, 12 Jul 1998 11:52:20 -0700 (PDT) Received: from current1.whistle.com(207.76.205.22) via SMTP by alpo.whistle.com, id smtpd014220; Sun Jul 12 18:52:13 1998 Date: Sun, 12 Jul 1998 11:52:10 -0700 (PDT) From: Julian Elischer To: Bruce Evans cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/conf Makefile.i386 In-Reply-To: <199807121047.DAA11064@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Bruce, can you think of a way to make config or the Makefile do: if config -g, tehn the default rule becomes: kernelstrip: kernel cp kernel kernel.strip strip -d kernel.strip and 'make install' will install the stripped version by default? (or maybe it's a silly idea anyhow) julian On Sun, 12 Jul 1998, Bruce Evans wrote: > bde 1998/07/12 03:47:33 PDT > > Modified files: > sys/i386/conf Makefile.i386 > Log: > Removed historical dependencies on `Makefile'. They had rotted to being > mostly for objects that have the fewest dependencies on `Makefile' > (since they were mostly for utilities and objects generated from *.s > and these don't depend on profiling flags). > > Give an explicit rule for building vnode_if.o. This fixes building > it without ${PROF}. > > Use .ORDER instead of a stamp file to avoid building vnode_if.[ch] > concurrently. > > Removed explicit dependencies that will be generated by `make' (.c.o) > or will be generated by mkdep. > > Added missing dependencies of special objects on opt_global.h. > > Use ${NORMAL_C} instead of special rules for special objects where > possible. > > FIxed dependencies of vers.o. > > Revision Changes Path > 1.117 +22 -32 src/sys/i386/conf/Makefile.i386 >