From 4f3a6891468a7834d2d655871c9db445538a8f8c Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 1 Dec 2007 16:06:53 +0100 Subject: Don't use GNU Make specific idioms. * doc/user/Makefile.am: Use old-fashioned ".input.output" targets. --- doc/user/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/user') diff --git a/doc/user/Makefile.am b/doc/user/Makefile.am index 9a514f9..3a83b20 100644 --- a/doc/user/Makefile.am +++ b/doc/user/Makefile.am @@ -17,7 +17,7 @@ skrflags = -I ../ -P ../img --compat=skribe load_path = $(top_srcdir)/src/guile:$(top_srcdir)/src/guile/skribilo/package:$(top_builddir)/src/guile:$(top_srcdir)/doc/modules -%.html: %.skb +.skb.html: GUILE_LOAD_PATH=$(load_path):$$GUILE_LOAD_PATH \ $(skribilo) $(skrflags) --target html -o $@ $< @@ -25,12 +25,12 @@ if HAVE_LOUT ps_DATA = user.ps -%.lout: %.skb +.skb.lout: GUILE_LOAD_PATH=$(load_path):$$GUILE_LOAD_PATH \ $(skribilo) $(skrflags) --target lout -o $@ $< -%.ps: %.lout - $(LOUT) -r4 -I$(srcdir)/lout -c $(<:%.lout=%) -o $@ $< +.lout.ps: + $(LOUT) -r4 -I$(srcdir)/lout -c $(@:%.ps=%) -o $@ $< endif -- cgit v1.2.3