Hi All,

I'm trying to write a implicit rule to convert a text page to a html using
perl based wiki preprocessor... I got the perl part working but I can't
seem to get Make to do the rest. I have the following make file.

<Makefile>

.SUFFIXES: .html .page

%.html : %.page
        echo $<
        perl compile_page.pl -T template/main.tpl -o $@ $<

</Makefile>

What did I do wrong here.. according to the doc I should be able to do this
rt?

Ko
_______________________________________________
Help-make mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/help-make

Reply via email to