aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc0
Commit message (Collapse)AuthorAgeFilesLines
* Remove; we don't use this file anymore.Marcel Moolenaar2000-01-091-124/+0
| | | | Notes: svn path=/head/; revision=55680
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50479
* fix (non destructive) braino to do with quoting in makefiles.Julian Elischer1999-06-061-2/+2
| | | | Notes: svn path=/head/; revision=47791
* Store the start time for later so it can be reprinted at the end.Julian Elischer1999-06-051-2/+4
| | | | | | | Reviewed by: terry Notes: svn path=/head/; revision=47767
* Change !defined(NOAOUT) knob to defined(WANT_AOUT).David E. O'Brien1999-03-291-5/+5
| | | | Notes: svn path=/head/; revision=45108
* Don't use /usr/obj/elf for make world anymore.John Hay1999-01-141-2/+4
| | | | | | | | NOTE: Your old /usr/obj/elf won't be deleted automagicaly, you will have to do it yourself. Notes: svn path=/head/; revision=42655
* Split out afterdistribute and distribute from BKTGTS because they doJohn Hay1998-12-201-3/+11
| | | | | | | | need MK_ENV. This should make release work again. Maybe we should get rid of the /usr/obj/elf at some stage? Notes: svn path=/head/; revision=41957
* Remove appending objformat to obj prefix forAndrey A. Chernov1998-12-161-2/+2
| | | | | | | | | backend targets. Old variant cause top level things build in /usr/obj/elf while lower level things build in /usr/obj which cause mismatch Notes: svn path=/head/; revision=41864
* Restored all lost user targets that are supported by bsd.subdir.mk:Bruce Evans1998-10-171-4/+5
| | | | | | | | | | checkdpadd, lint, maninstall, objlink, regress and tags. Removed bogus user target cleanobj. It is the non-recursive base of the cleandir target, so it is not useful (or usable) here. Notes: svn path=/head/; revision=40495
* Add back a few useful targets lost in the reshuffle.Jordan K. Hubbard1998-09-291-4/+4
| | | | | | | Reviewed by: jb Notes: svn path=/head/; revision=39784
* Changes to support -jXX.John Birrell1998-09-281-9/+10
| | | | | | | | Submitted by: Luoqi Chen <luoqi@watermarkgroup.com> via: Chuck Robey <chuckr@mat.net> Notes: svn path=/head/; revision=39727
* Purely cosmetic but useful change.Andreas Klemm1998-09-171-5/+5
| | | | | | | | | | | | | | Make output of make world more readable for grep. Now a grep '>>>' world.log shows you the single stages through which the bootstrap process went as discussed on -current. Could be used to debug the bootstrap mechanism in case of trouble more easily. Would be fine if any further @echo "..." messages containing a description, what's going on, could use the new format: @echo ">>> ..." Notes: svn path=/head/; revision=39423
* Revive hierarchy again.Andrey A. Chernov1998-09-101-2/+3
| | | | | | | Please commit only patches, not whole files! Notes: svn path=/head/; revision=39055
* Add the missing rerelease target back.John Birrell1998-09-091-4/+3
| | | | | | | Reported by: Justin Gibbs. Notes: svn path=/head/; revision=38977
* Revive hierarchy targetAndrey A. Chernov1998-09-071-3/+4
| | | | Notes: svn path=/head/; revision=38916
* YAMT (yet another missing target). It's a shame that these have toJohn Birrell1998-09-041-2/+2
| | | | | | | | be visible to the user. Maybe `make release' should call the backend directly. Notes: svn path=/head/; revision=38821
* Add the distribute target that make release wants.John Birrell1998-09-041-2/+2
| | | | Notes: svn path=/head/; revision=38804
* Add the clean targets again.John Birrell1998-09-011-3/+3
| | | | Notes: svn path=/head/; revision=38720
* E-day build system changes.John Birrell1998-08-311-0/+109
- Moved most of the guts of Makefile to Makefile.inc1 to become the backend for the build system. - The new Makefile doesn't suffer from problems including the wrong sys.mk because it doesn't use anything in there or bsd.own.mk. So, from now on, the proper build command is just `make world' (or buildworld). - The intermediate makefiles called Makefile.inc0 and Makefile.upgrade fiddle with the OBJFORMAT and MAKEOBJDIRPREFIX variables so that both aout and elf object trees can coexist. Makefile.upgrade contains the aout->elf transition build. - A cross build environment is now very close to reality. Specifying TOOLDIR, setting OBJFORMAT and MAKEOBJDIRPREFIX allow that. See the comments in Makefile for more info. Notes: svn path=/head/; revision=38666