mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-12 00:16:30 +00:00
Minor change about parallel make.
This commit is contained in:
parent
715363eb49
commit
edd7981e49
1 changed files with 4 additions and 1 deletions
|
@ -69,7 +69,7 @@ directory.
|
||||||
|
|
||||||
When using GNU @code{make}, relying on @samp{VPATH} to find the source
|
When using GNU @code{make}, relying on @samp{VPATH} to find the source
|
||||||
file will work in the case where there is a single dependency file,
|
file will work in the case where there is a single dependency file,
|
||||||
since the @file{make} automatic variable @samp{$<} will represent the
|
since the @code{make} automatic variable @samp{$<} will represent the
|
||||||
source file wherever it is. (Many versions of @code{make} set @samp{$<}
|
source file wherever it is. (Many versions of @code{make} set @samp{$<}
|
||||||
only in implicit rules.) A makefile target like
|
only in implicit rules.) A makefile target like
|
||||||
|
|
||||||
|
@ -97,6 +97,9 @@ foo.1 : foo.man sedscript
|
||||||
sed -e $(srcdir)/sedscript $(srcdir)/foo.man > $@@
|
sed -e $(srcdir)/sedscript $(srcdir)/foo.man > $@@
|
||||||
@end smallexample
|
@end smallexample
|
||||||
|
|
||||||
|
Try to make the build and installation targets, at least (and all their
|
||||||
|
subtargets) work correctly with a parallel @code{make}.
|
||||||
|
|
||||||
@node Utilities in Makefiles
|
@node Utilities in Makefiles
|
||||||
@section Utilities in Makefiles
|
@section Utilities in Makefiles
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue