BSD make doesn't like $<.

This commit is contained in:
Guus Sliepen 2012-07-21 13:38:14 +02:00
parent 98a72d6869
commit b161088b35

View file

@ -23,16 +23,16 @@ texi2html: tinc.texi
texi2html -split=chapter tinc.texi texi2html -split=chapter tinc.texi
tincd.8.html: tincd.8 tincd.8.html: tincd.8
w3mman2html $< > $@ w3mman2html $? > $@
tincctl.8.html: tincctl.8 tincctl.8.html: tincctl.8
w3mman2html $< > $@ w3mman2html $? > $@
tinc-gui.8.html: tinc-gui.8 tinc-gui.8.html: tinc-gui.8
w3mman2html $< > $@ w3mman2html $? > $@
tinc.conf.5.html: tinc.conf.5 tinc.conf.5.html: tinc.conf.5
w3mman2html $< > $@ w3mman2html $? > $@
substitute = sed \ substitute = sed \
-e s,'@PACKAGE\@',"$(PACKAGE)",g \ -e s,'@PACKAGE\@',"$(PACKAGE)",g \
@ -41,18 +41,18 @@ substitute = sed \
-e s,'@localstatedir\@',"$(localstatedir)",g -e s,'@localstatedir\@',"$(localstatedir)",g
tincd.8: tincd.8.in tincd.8: tincd.8.in
$(substitute) $< > $@ $(substitute) $? > $@
tincctl.8: tincctl.8.in tincctl.8: tincctl.8.in
$(substitute) $< > $@ $(substitute) $? > $@
tinc-gui.8: tinc-gui.8.in tinc-gui.8: tinc-gui.8.in
$(substitute) $< > $@ $(substitute) $? > $@
tinc.conf.5: tinc.conf.5.in tinc.conf.5: tinc.conf.5.in
$(substitute) $< > $@ $(substitute) $? > $@
tincinclude.texi: tincinclude.texi.in tincinclude.texi: tincinclude.texi.in
$(substitute) $< > $@ $(substitute) $? > $@
tinc.texi: tincinclude.texi tinc.texi: tincinclude.texi