| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=174480
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=173919
|
| | |
| |
| |
| |
| |
| |
| |
| | |
o How global, command-line, and environment variables relate.
o What peculiarities the -f option has WRT ${MAKEFLAGS}.
Notes:
svn path=/head/; revision=173217
|
| | |
| |
| |
| |
| |
| |
| | |
Pointed out by: ru
Notes:
svn path=/head/; revision=170179
|
| | |
| |
| |
| |
| |
| |
| |
| | |
out-of-date print not only "modified before source" message
but also the path of youngest source.
Notes:
svn path=/head/; revision=168893
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This fixes infinite restart in the following case:
Makefile: foo
foo: bar
do-something
Unlike GNU make, BSD make considers "Makefile" node as remade even
if "foo" is up-to-date and was not actually rebuilt.
GNU make does not consider nodes without commands as remade if child nodes
were not actually rebuilt.
Most probably, more proper fix would be to bring BSD make behaviour in-line
with GNU make but this would be more intrusive change.
Notes:
svn path=/head/; revision=168892
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
to globals, as per documentation.
Nudged by: Jeremie Le Hen
Notes:
svn path=/head/; revision=168671
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=167339
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
After reading Makefile and all the files that are included using .include
or .sinclude directives (source Makefiles) make considers each source
Makefile as a target and tries to rebuild it. Both explicit and implicit
rules are checked and all source Makefiles are updated if necessary. If
any of the source Makefiles were rebuilt, make restarts from clean state.
To prevent infinite loops the following source Makefile targets are
ignored:
- :: targets that have no prerequisites but have commands
- ! targets
- targets that have .PHONY or .EXEC attributes
- targets without prerequisites and without commands
When remaking a source Makefile options -t (touch target), -q (query
mode), and -n (no exec) do not take effect, unless source Makefile is
specified explicitly as a target in make command line.
Additionally, system makefiles and .depend are not considered as a
Makefiles that can be rebuilt.
Reviewed by: harti
Notes:
svn path=/head/; revision=167330
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
error return from open(2), leading to an erroneous value of maxJobs and
a hung make when -f is standard input and -j is used.
PR: bin/101232
Submitted by: Nate Eldredge <nge@cs.hmc.edu>
Notes:
svn path=/head/; revision=167329
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
PR: docs/107306
Submitted by: Tomas Mozes
MFC after: 1 week
Notes:
svn path=/head/; revision=165668
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
preceed -> precede,
preceeded -> preceded,
preceeding -> preceding.
Submitted by: Andre Guibert de Bruet <andy@siliconlandmark.com>
Notes:
svn path=/head/; revision=165628
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
PR: bin/99985
Submitted by: Nate Eldredge
MFC after: 3 days
Notes:
svn path=/head/; revision=163171
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=162816
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=162792
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=160574
|
| | |
| |
| |
| |
| |
| |
| | |
in the case the var already exists.
Notes:
svn path=/head/; revision=160450
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=160442
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=158452
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=157589
|
| | |
| |
| |
| |
| |
| |
| |
| | |
Reviewed by: harti
Obtained from: NetBSD (mostly)
Notes:
svn path=/head/; revision=157588
|
| | |
| |
| |
| |
| |
| |
| | |
Reviewed by: nyan
Notes:
svn path=/head/; revision=153115
|
| | |
| |
| |
| |
| |
| |
| |
| | |
free()ing stack memory which causes the program to abort,
and I can no longer make buildworld.
Notes:
svn path=/head/; revision=152982
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
than strlen(var) + 1)
- ReadMakeFile: prevent `fname' memory leak
- ReadMakeFile: prevent double free (caused by double fclose) --
ParsePopInput() closes input file
Reviewed by: harti
Notes:
svn path=/head/; revision=152969
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
looked for in the system make file directory or in the specified
-m paths instead of always looking in the other -I and .PATH
specified paths. (Commit log shamelessly stolen from NetBSD.)
Reviewed by: yar
Notes:
svn path=/head/; revision=151419
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
make's processing of top-level and included makefiles. Point
out at make.conf(5) and __MAKE_CONF when telling about sys.mk.
Reviewed by: ru
Notes:
svn path=/head/; revision=151351
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
a FreeBSD extension of sys.mk. A xref to make.conf(5)
will be enough here.
Requested by: ru
Notes:
svn path=/head/; revision=151255
|
| | |
| |
| |
| |
| |
| |
| | |
MFC after: 2 weeks
Notes:
svn path=/head/; revision=151201
|
| | |
| |
| |
| |
| |
| |
| | |
exits due to a signal.
Notes:
svn path=/head/; revision=151162
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=150609
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=150608
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=150601
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=150598
|
| | |
| |
| |
| |
| |
| |
| | |
whine when the file cannot be found and opened.
Notes:
svn path=/head/; revision=150595
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
type should be int rather than Boolean.
PR: bin/84528
Submitted by: Max Okumoto <okumoto@ucsd.edu>
MFC after: 3 weeks
Notes:
svn path=/head/; revision=149844
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
that have at least 3 characters.
MFC after: 1 week
Thanks to: Music band ``Chingon''
for keeping me company while searching for these.
Notes:
svn path=/head/; revision=148580
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
commands for this target are appended to the .END target instead
of beeing executed now. They are executed when the graph is finished.
There was a bug with executing the .END target which came in when
doing conversion to LST_FOREACH() which caused make to dump core.
PR: bin/83698
Submitted by: Max Okumoto <okumoto@ucsd.edu>
MFC after: 3 days
Notes:
svn path=/head/; revision=148151
|
| | |
| |
| |
| |
| |
| |
| | |
Approved by: re (blanket)
Notes:
svn path=/head/; revision=147370
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
the string. Until now this caused no harm, because the buffer code used
to tack two NULs onto buffers. With the new, soon to come, parsing code
this isn't the case anymore in all cases, so fix this.
Notes:
svn path=/head/; revision=146625
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
Makefile.
Requested by: ru
Notes:
svn path=/head/; revision=146608
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
this clear by constifying the return value.
Obtained from: DragonFlyBSD
Notes:
svn path=/head/; revision=146581
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
to has always been set to NULL for some time now.
Obtained from: DragonFlyBSD
Notes:
svn path=/head/; revision=146580
|
| | |
| |
| |
| |
| |
| |
| | |
the default shell in the Makefile.
Notes:
svn path=/head/; revision=146579
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=146578
|
| | |
| |
| |
| |
| |
| |
| | |
with %jd.
Notes:
svn path=/head/; revision=146577
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
consistency with the rest of make.
Obtained from: DragonFlyBSD (except for the rename)
Notes:
svn path=/head/; revision=146574
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
rename the function to be consistent with the naming scheme in the rest
of make. No functional changes.
Obtained from: DragonFlyBSD (idea and most of shell.h)
Notes:
svn path=/head/; revision=146572
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
the default shell.
Idea from: DragonFlyBSD
Notes:
svn path=/head/; revision=146571
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
before executing the shell. Until now this was done when the default
shell was the ksh. This failed if the default shell was sh or csh and
the user switched to ksh.
Notes:
svn path=/head/; revision=146570
|
| | |
| |
| |
| |
| |
| |
| | |
target.
Notes:
svn path=/head/; revision=146563
|