From dea81a1e14eb9d5c9d4ec971d0041f61ef08c6ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Sat, 2 Jun 2007 13:38:37 +0200 Subject: Don't use GNU make extensions for fig to png creation, as the old-style suffix rules works. --- doc/hackersguide/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/hackersguide/Makefile.am b/doc/hackersguide/Makefile.am index 02a433299..35d96ca9a 100644 --- a/doc/hackersguide/Makefile.am +++ b/doc/hackersguide/Makefile.am @@ -61,10 +61,10 @@ hackersguide.html: $(hackersguide_sgml) endif if HAVE_FIG2DEV -%.png: %.fig +fig.png: $(FIG2DEV) -L png -S 4 $< $@; else -%.png: %.fig +.fig.png: if test x"$(fail_if_missing)" = x"yes"; then \ echo "Please install fig2dev."; \ exit 1; \ @@ -75,3 +75,5 @@ else touch $(notdir $^); \ fi endif + +SUFFIXES = .png .fig -- cgit v1.2.3