On Wed, Feb 20, 2019 at 1:04 AM LeJacq, Jean Pierre
wrote:
>
> On Tuesday, February 19, 2019 10:51:42 AM EST Masahiro Yamada wrote:
> >
> > (Makefile begin)-
> > .PHONY: all
> > all: foo.x foo.z
> >
> > %.x %.z:
> > touch $@
> > -(Makefile end)--
> >
On Tuesday, February 19, 2019 10:51:42 AM EST Masahiro Yamada wrote:
>
> (Makefile begin)-
> .PHONY: all
> all: foo.x foo.z
>
> %.x %.z:
> touch $@
> -(Makefile end)--
>
> $ rm foo*
> $ make
> touch foo.x
> $ make
> touch foo.z
> $ make
> make: Not
Hi.
I have a question about the following behavior.
(Makefile begin)-
.PHONY: all
all: foo.x foo.z
%.x %.z:
touch $@
-(Makefile end)--
$ rm foo*
$ make
touch foo.x
$ make
touch foo.z
$ make
make: Nothing to be done for 'all'.
When multiple t