summaryrefslogtreecommitdiff
path: root/usr.bin/make/main.c
AgeCommit message (Expand)Author
2005-02-17alyte spelling-in-comment fixesJolan Luff
2004-04-21- correct SYNOPSISJason McIntyre
2004-04-07ISO function declarations, trim a few comments, rename a few variables toMarc Espie
2004-01-30a collection of flags is an int.Marc Espie
2003-06-03Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
2003-04-21Stop parsing arguments when we hit "--".Todd C. Miller
2003-04-06get rid of some strcpy/sprintf.Marc Espie
2002-12-30Don't pass a NULL arg to Parse_DoVar which can happen if user specifiesTodd C. Miller
2002-12-30Avoid setting optind to 0 since in GNU getopt() that means the sameTodd C. Miller
2002-03-02kill #ifdef REMOTE stuff that only obfuscates issues.Marc Espie
2001-11-11Fixed version... don't see how this could work on i386, since it didn'tMarc Espie
2001-11-11undo changes that crash on (at least) the alphaTheo de Raadt
2001-11-11Redo LstInit as a macro: smaller and faster code in all cases, zeroing twoMarc Espie
2001-06-05Use Str_concat instead of fixed buffers and snprintf in building paths.Marc Espie
2001-06-03Make sure targs get initialized.Marc Espie
2001-05-31Simple guard against overflow. Better code to appear.Marc Espie
2001-05-29Protect against copying a too long PWD.Marc Espie
2001-05-29Take includes out of lst.h, re-add what's needed to separate files.Marc Espie
2001-05-23Mostly clean-up:Marc Espie
2001-05-07avoid closing the same file twice. parse module assumes ownership ofMarc Espie
2001-05-03Synch with my current work.Marc Espie
2000-11-24Change the time stamp interface to use an abstract datatype.Marc Espie
2000-10-13esetenv: does a setenv and bails out if error.Marc Espie
2000-09-14Replace the old hash used to hold file names within a directory withMarc Espie
2000-09-14- new DirReadDir internal function, that just reads a directory fromMarc Espie
2000-09-14Some systematic clean-up.Marc Espie
2000-07-31POSIX rules: pass variables set on the command line to submakes throughMarc Espie
2000-07-18Handle MAKEFLAGS variation mandated by POSIX.Marc Espie
2000-07-01Forgot to import one estrdup from my trunk.Marc Espie
2000-06-23This patch is worth a lot, speed-wise.Marc Espie
2000-06-23This patch separates local contexts from global contexts for good.Marc Espie
2000-06-23Trivial consequences of the previous list changes:Marc Espie
2000-06-17A few assorted changes, to remove more dynamic lists.Marc Espie
2000-06-17This patch introduces a distinction betweenMarc Espie
2000-06-10Clean-up patch: use `void *' instead of old-fashioned ClientData/Address.Marc Espie
2000-06-10Thus, Lst_ForEach no longer needs returning a status.Marc Espie
2000-04-03Junk CDPATH from the environment.Marc Espie
2000-03-26Remove idiotic, braindead casts T* -> void*Marc Espie
2000-02-02Bug-fix: make should behave sensibly when presented with negative times...Marc Espie
1999-12-19Rearrange Lst_Find interface to conform better with other functions.Marc Espie
1999-12-18Nothing ever checks ReturnStatus on Lst_Insert, Lst_Append, Lst_AtFront,Marc Espie
1999-12-18NIL, NILGNODE, etc, are only glorified NULL.Marc Espie
1999-12-18make does not use circular lists, get rid of the extra weight.Marc Espie
1999-12-16Var_Subst is actually two distinct functions folded into one:Marc Espie
1999-12-16Allocate buffers as static data structures.Marc Espie
1999-12-16Split Buf_GetAll into Buf_Retrieve/Buf_Size.Marc Espie
1999-12-09Split some allocation/error handling functions out of main.cMarc Espie
1999-12-06Extra parameter no longer needed, ditch.Marc Espie
1999-12-06Clean up buffers interface somewhat:Marc Espie
1999-12-06Fix handling ofMarc Espie