Subject: Re: CVS commit: basesrc
To: None <simonb@netbsd.org>
From: Bill Sommerfeld <sommerfeld@orchard.arlington.ma.us>
List: source-changes
Date: 12/03/1999 16:31:51
> Log Message:
> Move the "${MAKE} obj" above the share/tmac stage so that the generated
> files in that directory don't pollute the source tree before the obj
> dirs are created.

I have two problems with this change.

1) if MKOBJDIRS is "yes", and "MKSHARE" is no, object directories
don't get built.

 2) The whole point of doing the "make obj" after the "make cleandir"
was so that going from a non-obj build to an obj build in the same
tree would clean up any "pollution" in the source tree before building
all the obj dirs..  This change, if anything makes this transition
worse.

My proposal: do things in the following order:

	make cleandir
	make obj
	make share/tmac


						- Bill