diff options
author | Ludovic Courtès | 2007-12-01 16:06:53 +0100 |
---|---|---|
committer | Ludovic Courtès | 2007-12-01 16:06:53 +0100 |
commit | 4f3a6891468a7834d2d655871c9db445538a8f8c (patch) | |
tree | af029641a2063e010650ecdb7203105a01bf83f8 /doc | |
parent | 54ae61cd32d6580791aff55bfce96386fdff9550 (diff) | |
download | skribilo-4f3a6891468a7834d2d655871c9db445538a8f8c.tar.gz skribilo-4f3a6891468a7834d2d655871c9db445538a8f8c.tar.lz skribilo-4f3a6891468a7834d2d655871c9db445538a8f8c.zip |
Don't use GNU Make specific idioms.
* doc/user/Makefile.am: Use old-fashioned ".input.output" targets.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
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 |