aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make
Commit message (Expand)AuthorAgeFilesLines
...
* | Describe the -x option and the .WARN pseudo-target.Hartmut Brandt2005-05-241-0/+33
* | Before doing any parsing parse the builtin shell specifications andHartmut Brandt2005-05-243-178/+204
* | Allow the .SHELL target to specify the list of shell meta characters andHartmut Brandt2005-05-241-288/+304
* | Make the ArgArray_Init() function visible to the rest of make.Hartmut Brandt2005-05-232-1/+2
* | Get rid of global variables for argument vectors produced by brk_string()Hartmut Brandt2005-05-187-210/+262
* | Get rid of the ReturnStatus obscuration that was anyway used onlyHartmut Brandt2005-05-188-45/+32
* | Use the print_flags function to print the OP_ flags of a target.Hartmut Brandt2005-05-134-41/+28
* | Move the Boolean and ReturnStatus stuff from sprite.h to util.h andHartmut Brandt2005-05-1316-81/+27
* | Make Shell_Init() static - it's only used here.Hartmut Brandt2005-05-132-10/+9
* | Include <err.h>. On my system CVS Make(1) has an implicit declaration ofJuli Mallett2005-05-121-0/+1
* | Still too early to bump WARNS - there are still warnings on 64bitHartmut Brandt2005-05-121-1/+1
* | Make sure machine is initialize before use. Also make two pointers constHartmut Brandt2005-05-121-4/+5
* | Get rid of the warning about vfork() clobbering variables.Hartmut Brandt2005-05-121-4/+9
* | Do mktemp() by hand to get rid of the mktemp() warning and theHartmut Brandt2005-05-121-17/+102
* | Use a variable initialized to a string instead of the string directlyHartmut Brandt2005-05-122-7/+8
* | Move code in CondToken() and get rid of a goto.Hartmut Brandt2005-05-121-12/+11
* | Remove a useless else and un-indent the following code.Hartmut Brandt2005-05-121-369/+370
* | Revert the previous accidential commit.Hartmut Brandt2005-05-121-1/+1
* | Cleanup SuffFindArchDeps() to get rid of two const-warnings.Hartmut Brandt2005-05-122-12/+10
* | The first element of the vector built by brk_string() is neverHartmut Brandt2005-05-122-10/+15
* | 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-123-18/+30
* | Cleanup main(). Move catching SIGCHLD into job.c. Move unsetenv("ENV")Hartmut Brandt2005-05-123-53/+63
* | Reshuffle functions to get rid of prototypes.Hartmut Brandt2005-05-121-108/+102
* | Compat_RunCommand is used only in job.c so make it static there.Hartmut Brandt2005-05-122-2/+2
* | Move variable printing from main.c to var.cHartmut Brandt2005-05-123-29/+38
* | Fix the fix for bin/72510 applied in job.c:1.70. Actually there haveHartmut Brandt2005-05-125-8/+13
* | Move some global variables to the correct files.Hartmut Brandt2005-05-124-10/+12
* | Untwist the convoluted if() expressions in JobFinish(). TheyHartmut Brandt2005-05-121-106/+174
* | Move some comments around to where they belong and remove some unneccessaryHartmut Brandt2005-05-122-48/+34
* | Convert Compat_RunCommand() to use ProcWait(). This also gives Cmd_Exec()Hartmut Brandt2005-05-121-73/+68
* | Make a function ProcWait() that waits for the given process.Hartmut Brandt2005-05-121-20/+31
* | Overhaul the fork(), exec() code. Put all the common handling thatHartmut Brandt2005-05-121-167/+222
* | Move the definitions of the OP_* constants from make.h into GNode.hHartmut Brandt2005-05-105-79/+86
* | Path_Expand() expects its first argument to be writeable so put theHartmut Brandt2005-05-101-1/+2
* | Move declarations of variables belonging to the variable moduleHartmut Brandt2005-05-102-6/+9
* | Style: remove spaces before tabs.Hartmut Brandt2005-05-101-31/+31
* | Move the remaining two prototypes from nonints.h to make.h andHartmut Brandt2005-05-105-53/+3
* | Make shellPath and shellName static - they're used in job.c only.Hartmut Brandt2005-05-104-12/+10
* | Make the three versions of fork() more uniform.Hartmut Brandt2005-05-101-63/+63
* | Move the defines for TMPPAT and KQUEUE from the public job.h into job.cHartmut Brandt2005-05-102-12/+12
* | Merge compat.c into job.c. There is a lot in common between theseHartmut Brandt2005-05-106-820/+709
* | Move Cmd_Exec() from main.c to job.c and fix its prototype. ThisHartmut Brandt2005-05-105-110/+114
* | Var_SubstOnly() is only used to subsitute a variable from the globalHartmut Brandt2005-05-103-4/+4
* | Move the declaration of VAR_CMD and VAR_GLOBAL from globals.h to var.hHartmut Brandt2005-05-102-6/+6
* | Clean up comments. No code changes.Hartmut Brandt2005-05-101-194/+128
* | Merge var_modify.c into var.c and move types and function declarationsHartmut Brandt2005-05-104-691/+602
* | Move some debugging code from targ.c to var.c where it actually belongs.Hartmut Brandt2005-05-103-10/+14
* | Make make a little bit more POSIXish with regard to option parsing:Hartmut Brandt2005-05-103-12/+64
* | Split Var_Subst() into two functions: Var_SubstOnly() which substitutesHartmut Brandt2005-05-099-163/+174