aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/main.c
Commit message (Expand)AuthorAgeFilesLines
* Remove duplicate OPTFLAGS definition.Max Khon2009-02-021-1/+0
* Sort the options, per style(9).Warner Losh2009-02-021-24/+25
* David doesn't consider the prior -s behavior a bug. Back out thisWarner Losh2009-01-311-1/+0
* Unbreak make -s. There's about a 10% performance improvement with -sWarner Losh2009-01-301-0/+1
* Don't enable -Q by default - I've fixed the rescue build issue.David E. O'Brien2009-01-131-1/+2
* + Add the -Q be-quiet flag for parallel jobs.David E. O'Brien2009-01-031-1/+7
* 1. Add the ability to tweak the token output before targets in job mode.David E. O'Brien2008-12-291-0/+10
* Exit with error code 2 when run with -k (continue if errors) and build failed.Max Khon2008-12-181-5/+8
* Add POSIX -p flag to make(1).Ed Schouten2008-07-301-3/+9
* If the special target .MAKEFILEDEPS exists, then enable theDavid E. O'Brien2008-03-121-1/+2
* The non-POSIX environment variable MAKE was supersededYaroslav Tykhiy2008-03-051-1/+1
* Don't forget to set MAKEFLAGS in the childs' environmentYaroslav Tykhiy2008-03-051-0/+2
* Note 7.0 was the first version that FreeBSD/pc98 had a MACHINE of pc98Warner Losh2008-03-041-8/+7
* Fix -jX when makefiles are remade.Max Khon2007-11-251-0/+16
* Change directory back to ${.CURDIR} when remaking Makefiles.Max Khon2007-06-011-1/+9
* When remaking makefiles check that mtime has actually changed.Max Khon2007-04-201-3/+14
* Implement "Remaking Makefiles" feature:Max Khon2007-03-081-6/+196
* whitespace fixingDavid E. O'Brien2006-07-171-8/+8
* Prepare for MACHINE and hw.machine switching to "pc98" on FreeBSD/pc98.Ruslan Ermilov2005-12-051-16/+11
* Quickly fix brokeness in revision 1.157, that change wasDavid Xu2005-12-011-4/+4
* - match_var: do not address memory at invalid address (`len' can be greaterMax Khon2005-11-301-2/+4
* Fix the type of the variable 'debug'. It is used as a bitmap, so theHartmut Brandt2005-09-071-1/+1
* The caller of Var_Value() should not change the variable value. MakeHartmut Brandt2005-05-241-1/+1
* Get rid of the third argument to Var_Value() the pointer it pointedHartmut Brandt2005-05-241-3/+2
* Factor out all the .SHELL parsing related stuff into its own file andHartmut Brandt2005-05-241-0/+1
* Before doing any parsing parse the builtin shell specifications andHartmut Brandt2005-05-241-0/+7
* Get rid of global variables for argument vectors produced by brk_string()Hartmut Brandt2005-05-181-7/+5
* Make sure machine is initialize before use. Also make two pointers constHartmut Brandt2005-05-121-4/+5
* Cleanup. Move initialisation of file and program global variablesHartmut Brandt2005-05-121-56/+56
* Replace a lot of Var_Set(..., VAR_GLOBAL) by Var_SetGlobal().Hartmut Brandt2005-05-121-18/+18
* Cleanup main(). Move catching SIGCHLD into job.c. Move unsetenv("ENV")Hartmut Brandt2005-05-121-53/+29
* Reshuffle functions to get rid of prototypes.Hartmut Brandt2005-05-121-108/+102
* Move variable printing from main.c to var.cHartmut Brandt2005-05-121-28/+1
* Fix the fix for bin/72510 applied in job.c:1.70. Actually there haveHartmut Brandt2005-05-121-4/+5
* Move some global variables to the correct files.Hartmut Brandt2005-05-121-3/+0
* Path_Expand() expects its first argument to be writeable so put theHartmut Brandt2005-05-101-1/+2
* Move the remaining two prototypes from nonints.h to make.h andHartmut Brandt2005-05-101-1/+0
* Merge compat.c into job.c. There is a lot in common between theseHartmut Brandt2005-05-101-1/+0
* Move Cmd_Exec() from main.c to job.c and fix its prototype. ThisHartmut Brandt2005-05-101-109/+0
* Make make a little bit more POSIXish with regard to option parsing:Hartmut Brandt2005-05-101-4/+18
* Split Var_Subst() into two functions: Var_SubstOnly() which substitutesHartmut Brandt2005-05-091-2/+2
* Introduce a new pseudo-target .EXPORTVAR which allows to put aHartmut Brandt2005-05-061-1/+4
* Implement a pseudo-target .WARN that allows toggeling the warning flagsHartmut Brandt2005-04-291-4/+56
* Introduce a flag to enable extended warnings (-x) and make them offHartmut Brandt2005-04-281-4/+13
* Remove an unneccesary forward declaration for MainParseArgs().Hartmut Brandt2005-04-111-20/+34
* Remove the call to Parse_Init() - there is no need to initializeHartmut Brandt2005-04-111-2/+0
* Style: Indentation.Hartmut Brandt2005-04-011-133/+133
* Almost complete rewrite of the archive code (except for the Makefile parsingHartmut Brandt2005-03-311-3/+7
* Make paths an explicite datatype instead of using the generic Lst.Hartmut Brandt2005-03-231-9/+10
* An automatic variable in a local scope is (conceptionally) destroyed withHartmut Brandt2005-03-221-1/+1