summaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Indentation.ru2002-07-201-7/+7
|
* Upgrade make(1) if not passing the ``.if defined(notdef) && ${notdef:U}''ru2002-07-201-2/+8
| | | | test (revealed by bsd.lib.mk,v 1.134).
* correct syntax in last commitdillon2002-06-241-1/+1
|
* Document TARGET_ARCHdillon2002-06-241-0/+5
|
* Reimplement FILES support using bsd.files.mk with theru2002-06-031-1/+1
| | | | | | | | same set of features as in recently added bsd.incs.mk (FILESGROUPS, accessibility from both bsd.prog.mk and bsd.lib.mk, de-pessimized typical installation path, etc.) New standard targets: buildfiles, installfiles, and files (buildfiles + installfiles).
* Line up the make world completed output.obrien2002-05-301-1/+1
|
* Forgot to commit this for the `includes' -> `buildincludes',ru2002-05-241-2/+5
| | | | `incsinstall' -> `installincludes' changes.
* Added new bsd.incs.mk which handles installing of header filesru2002-05-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via INCS. Implemented INCSLINKS (equivalent to SYMLINKS) to handle symlinking include files. Allow for multiple groups of include files to be installed, with the powerful INCSGROUPS knob. Documentation to follow. Added standard `includes' and `incsinstall' targets, use them in Makefile.inc1. Headers from the following makefiles were not installed before (during `includes' in Makefile.inc1): kerberos5/lib/libtelnet/Makefile lib/libbz2/Makefile lib/libdevinfo/Makefile lib/libform/Makefile lib/libisc/Makefile lib/libmenu/Makefile lib/libmilter/Makefile lib/libpanel/Makefile Replaced all `beforeinstall' targets for installing includes with the INCS stuff. Renamed INCDIR to INCSDIR, for consistency with FILES and SCRIPTS, and for compatibility with NetBSD. Similarly for INCOWN, INCGRP, and INCMODE. Consistently use INCLUDEDIR instead of /usr/include. gnu/lib/libstdc++/Makefile and gnu/lib/libsupc++/Makefile changes were only lightly tested due to the missing contrib/libstdc++-v3. I fully tested the pre-WIP_GCC31 version of this patch with the contrib/libstdc++.295 stuff. These changes have been tested on i386 with the -DNO_WERROR "make world" and "make release".
* Bring doc up-to-date with current buildworld/buildkernel practices.jwd2002-05-081-11/+20
| | | | Reviewed by: jhb
* Added internal, non-recursive (SUBDIR) versions of the `all-man'ru2002-05-071-1/+1
| | | | | | | | and `maninstall' targets. This fixes the issue where each subdir was descended into twice during "make all", and also resurrects the standardization of `maninstall'. Urged by: bde
* Milestone #2 in cross-arch make releases. They now work!ru2002-04-301-2/+2
| | | | | | | | | You need to set TARGET_ARCH and possibly TARGET, the same way you normally do it for a cross build(7). Renamed `distribworld' to a more natutal `distributeworld'. Put pwd_mkdb(8) under ${INSTALLTMP}; for `distributeworld'.
* Parallel "make release" fixes.ru2002-04-291-1/+13
|
* Milestone #1 in cross-arch make releases.ru2002-04-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not install games and profiled libraries to the ${CHROOTDIR} with the initial installworld. Eliminate the need in the second installworld. For that, make sure _everything_ is built in the "world" environment, using the right tool chain. Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the buildworld process into stages, and skip some stages when SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5 dists). Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running makewhatis(1) at the end of installworld (used when making crypto, krb4, and krb5 dists). In release/scripts/doFS.sh, ensure that the correct boot blocks are used. Moved the creation of the "crypto" dist from release.5 to release.2. In release.3 and doMFSKERN, build kernels in the "world" environment. KERNELS now means "additional" kernels, GENERIC is always built. Ensure we build crunched binaries in the "world" environment. Obfuscate release/Makefile some more (WMAKEENV) to achieve this. Inline createBOOTMFS target. Use already built GENERIC kernel modules to augment mfsfd's /stand/modules. GC doMODULES as such. Assorted fixes: Get rid of the "afterdistribute" target by moving the single use of it from sys/Makefile to etc/Makefile's "distribute". Makefile.inc1: apparently "etc" no longer needs to be last for "distribute" to succeed. gnu/usr.bin/perl/library/Makefile.inc: do not override the "install" and "distribute" targets, do it the "canonical" way. release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and catpages appear in the right dists. Note that because Perl does not respect the MANBUILDCAT (and NOMAN), this results in a loss of /usr/share/perl/man/cat* empty directories. This will be fixed soon. Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it means "make KerberosIV"), as documented in the make.conf(5) manpage. Most of the userland makefiles did not test it for "YES" anyway. XXX Should specialized kerberized libpam versions be included into the krb4 and krb5 dists? (libpam.a would be incorrect anyway if both krb4 and krb5 dists were choosen.) Make sure "games" dist is made before "catpages", otherwise games catpages settle in the wrong dist. Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com>
* Merge bsd.obj.mk's version of the _SUBDIR target with bsd.subdir.mk.ru2002-04-231-1/+1
| | | | | | | | | | | | | | | | Ensure all standard targets honor SUBDIR. Now `make obj' descends into SUBDIRs even if NOOBJ is set (some descendants may still need an object directory, but we do not have such precedents). Now `make install' in non-bsd.subdir.mk makefiles runs `afterinstall' target _after_ `install' in SUBDIRs, like we do in bsd.subdir.mk. Nothing depended on the wrong order anyway. Fixed `distribute' targets (except for the bsd.subdir.mk version) so that they do not depend on _SUBDIR; `distribute' calls `install' which already depends on _SUBDIR. De-standardize `maninstall', otherwise manpages would be installed twice. (To be revised later.)
* Despite the fact that it is documented in the handbook, the release notes,gshapiro2002-04-201-3/+3
| | | | | | | | | | | | | | | | and UPDATING and has been posted to both freebsd-current and freebsd-stable, users are still not adding the required smmsp user and group before doing an installworld. Therefore, don't let users do an installworld unless they have followed directions. Add a new installcheck Makefile target which installworld runs before actually starting the installation. This target can be used by other parts of userland as well. The first addition to the target is to check for the smmsp user and group if NO_SENDMAIL isn't defined. Others may add checks to this target as they see fit. MFC after: 1 week
* Makefile.inc0 is no longer used.keramida2002-03-031-3/+1
| | | | | | Update comments to reflect that. Approved by: dd, silence in -audit.
* FreeBSD 4.1 bootstrapping aid (``:C'' make(1) modifier usedru2002-02-081-0/+5
| | | | | | by gnu/usr.bin/binutils/as/Makefile.inc0 is not there). XXX: make(1) should return with a non-zero exit status here.
* Make it possible to build manpages for the entire source tree.ru2001-03-271-1/+1
|
* End words with a `.'.obrien2001-03-041-2/+2
| | | | Fixed spacing messed up in rev 1.244.
* setlocale(3) has been fixed to match POSIX standard:ru2001-03-021-2/+2
| | | | LC_ALL takes precedence over other LC_* envariables.
* Cosmetic fix: Document targets at the top in a uniform way.jkh2001-02-131-1/+1
|
* Add back displaying the `world' start time when displaying the stop time.obrien2000-12-061-2/+3
| | | | | However, don't prefix it with '>>>', so those greping for times will not see it.
* Also list kernel target so one can get to it.jkh2000-12-011-3/+3
|
* Document the "kernel" target.jkh2000-12-011-0/+1
|
* Fix release, broken by the perl cross-build fixes.marcel2000-11-211-4/+4
| | | | | | | | | The distribute target is basicly the same as an install. For perl, this means that miniperl is needed. Since miniperl is only present in the object directory, we need to make sure the path is set correctly. To do this, we have make release use a new distribworld target that sets the path before doing a make distribute.
* While we're still arguing over debugging output, at least be in ajkh2000-11-071-2/+1
| | | | | | self-consistent state. Requested by: bde
* MFS: eliminate duplicate start linejkh2000-11-051-1/+0
|
* Pass the reinstallkernel target through from Makefile to Makefile.inc1.markm2000-09-191-2/+4
|
* Mention the buildkernel/installkernel targets in the documentation.alex2000-07-311-0/+2
|
* We have a new world order in libraries.markm2000-02-241-2/+2
| | | | Goodbye libdes; Welcome libcrypto.
* Add the buildkernel and installkernel targets.marcel2000-01-091-9/+25
| | | | | | While here fix some minor style bugs (whitespacing) and move the make target from Makefile.upgrade to this file. Simplify the make target to make it readable.
* Descent into sub-makes with a fixed PATH. The PATH does not containmarcel1999-12-231-1/+2
| | | | | | | | | /usr/games on purpose. All tools in /usr/games are built as part of the tool stages to support building world on machines without games. This fixes any build problems that have been caused by non-standard paths and also removes the primary objection for not using absolute paths.
* Oops! bypassing Makefile.inc0 without adding a `world' target is notmarcel1999-12-081-2/+37
| | | | | a good idea. Adding `world' to Makefile is save, because all hairy bits are in Makefile.inc1 anyway.
* Restore the upgrade path from -stable to -current and prepare formarcel1999-12-081-1/+1
| | | | | | | | | non-root cross-building. o Makefile.inc0 is not used anymore. o The legacy aout build has been removed. o Selectively build tools *before* building includes/libraries. o Avoid using mtree to populate the obj tree.
* Remove a comment about setting objformat to elf by default. We'vejb1999-09-181-8/+1
| | | | | | | done that already. Change the -DWANT_AOUT comment to refer to 4.0 so that it sounds less silly.
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Comment change: "Be warned, this will update your installed system, excepthoek1999-07-311-2/+2
| | | | for the configuration files in the /etc directory." .... and the kernel.
* Change !defined(NOAOUT) knob to defined(WANT_AOUT).obrien1999-03-291-2/+2
|
* Note that the upgrade target exists, and what it does.jkh1999-03-201-1/+2
| | | | Requested by: Wayne M Barnes <stabilizer@klentaq1.emergingtech.org>
* Use ${MAKE} not 'make -f'msmith1999-02-171-4/+4
| | | | Submitted by: tfreak@fluffybunny.jaded.net
* Frob the upgrade target to be a bit more inclusive. This appears tojkh1999-01-261-12/+9
| | | | | | be a good bit more successful at doing automated upgrades than the previous aout-to-elf target, anyway. I'll MF3 in a couple of days depending on how this does.
* Dip my toes into the fire and zap the leftover lkm hooks.. It seems theypeter1998-12-281-3/+3
| | | | | | try and recurse if the lkm dir exists for some reason but there isn't any Makefile there. (eg: stray files prevented cvs update -P from removing the empty dirs)
* Restored all lost user targets that are supported by bsd.subdir.mk:bde1998-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.
* Add back a few useful targets lost in the reshuffle.jkh1998-09-291-4/+4
| | | | Reviewed by: jb
* The legacy stuff needs gobs more space in the obj tree. 165->260 Mb.jb1998-09-281-2/+2
|
* Restore default implict behavior of running the all target we had before.jkh1998-09-151-1/+4
|
* Revive hierarchy again.ache1998-09-101-3/+3
| | | | Please commit only patches, not whole files!
* Add the missing rerelease target back.jb1998-09-091-5/+8
| | | | | | | | | | Reported by: Justin Gibbs. Add the move-aout-libs upgrade target so that people who have already gone elf can put their libraries through the mincer. Anyone who hasn't deleted aout libraries from /usr/lib (but has done a make world putting the new aout libs in /usr/lib/aout) will be asked for confirmation to delete them one by one.
* Revive hierarchy targetache1998-09-071-3/+3
|
* YAMT (yet another missing target). It's a shame that these have tojb1998-09-041-2/+2
| | | | | be visible to the user. Maybe `make release' should call the backend directly.
OpenPOWER on IntegriCloud