PS> We've already had this conversation at least once
Let's see, at this rate we'll have it again in 2017.
___
Bug-make mailing list
Bug-make@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-make
On Fri, 2013-03-29 at 19:20 +0800, jida...@jidanni.org wrote:
> using
> %.kml:%.html %.xq; basex $*.xq < $< | ./postprocessor
>
> make q.kml
> will say 'no rule to make q.kml'
> until one creates a q.xq file
>
> So it should say something different than 'no rule'
> because there indeed is a rule.
$ cat Makefile
W=wget -Y off
D=2013-05-02
%.kml:%.html %.xq; basex $*.xq < $< | ./postprocessor
%.html:; $W http://eaip.caa.gov.tw/eaip/history/$D-AIRAC/html/eAIP/$@
$ make RC-ENR-3.3-en-TW.kml
make: *** No rule to make target `RC-ENR-3.3-en-TW.kml'. Stop.
$ touch RC-ENR-3.3-en-TW.xq
$ make RC-ENR
using
%.kml:%.html %.xq; basex $*.xq < $< | ./postprocessor
make q.kml
will say 'no rule to make q.kml'
until one creates a q.xq file
So it should say something different than 'no rule'
because there indeed is a rule.
___
Bug-make mailing list
Bug-make