diff options
author | Roland McGrath <roland@redhat.com> | 1994-05-11 01:42:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-05-11 01:42:43 +0000 |
commit | c25db142649e38310b1a12ad0d5a830988676a7c (patch) | |
tree | 25a97aebe1c7be23f908126fea4da1e5cc753228 /make.texinfo | |
parent | e83c7d40cd1c05a663ec50d4b3f1f30a951571b5 (diff) | |
download | gunmake-c25db142649e38310b1a12ad0d5a830988676a7c.tar.gz |
(Overriding Makefiles): Don't suggest using .DEFAULT; that loses if the
target file exists. Instead recommend the combination of a match-anything
rule and a force target.
Diffstat (limited to 'make.texinfo')
-rw-r--r-- | make.texinfo | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/make.texinfo b/make.texinfo index 66fa8c0..1d14203 100644 --- a/make.texinfo +++ b/make.texinfo @@ -1247,13 +1247,12 @@ include one in the other, and add more targets or variable definitions. However, if the two makefiles give different commands for the same target, @code{make} will not let you just do this. But there is another way. -@cindex @code{.DEFAULT}, used to override +@cindex match-anything rule, used to override In the containing makefile (the one that wants to include the other), -you can use the @code{.DEFAULT} special target to say that to remake -any target that cannot be made from the information in the containing -makefile, @code{make} should look in another makefile. -@xref{Last Resort, , Defining Last-Resort Default Rules}, -for more information on @code{.DEFAULT}. +you can use a match-anything pattern rule to say that to remake any +target that cannot be made from the information in the containing +makefile, @code{make} should look in another makefile. +@xref{Pattern Rules}, for more information on pattern rules. For example, if you have a makefile called @file{Makefile} that says how to make the target @samp{foo} (and other targets), you can write a @@ -1263,18 +1262,27 @@ makefile called @file{GNUmakefile} that contains: foo: frobnicate > foo -.DEFAULT: +%: force @@$(MAKE) -f Makefile $@@ +force: ; @end example If you say @samp{make foo}, @code{make} will find @file{GNUmakefile}, read it, and see that to make @file{foo}, it needs to run the command @samp{frobnicate > foo}. If you say @samp{make bar}, @code{make} will find no way to make @file{bar} in @file{GNUmakefile}, so it will use the -commands from @code{.DEFAULT}: @samp{make -f Makefile bar}. If +commands from the pattern rule: @samp{make -f Makefile bar}. If @file{Makefile} provides a rule for updating @file{bar}, @code{make} will apply the rule. And likewise for any other target that -@file{GNUmakefile} does not say how to make.@refill +@file{GNUmakefile} does not say how to make. + +The way this works is that the pattern rule has a pattern of just +@samp{%}, so it matches any target whatever. The rule specifies a +dependency @file{force}, to guarantee that the commands will be run even +if the target file already exists. We give @file{force} target empty +commands to prevent @code{make} from searching for an implicit rule to +build it---otherwise it would apply the same match-anything rule to +@file{force} itself and create a dependency loop! @node Rules, Commands, Makefiles, Top @chapter Writing Rules |