summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-02 13:38:37 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-02 13:38:37 +0200
commitdea81a1e14eb9d5c9d4ec971d0041f61ef08c6ca (patch)
tree763fa08a85bdb16f2137273c6cde266a623e19a1 /doc
parent57dbedf70196f8325291d8e0edc3289533de9388 (diff)
downloadxine-lib-dea81a1e14eb9d5c9d4ec971d0041f61ef08c6ca.tar.gz
xine-lib-dea81a1e14eb9d5c9d4ec971d0041f61ef08c6ca.tar.bz2
Don't use GNU make extensions for fig to png creation, as the old-style suffix rules works.
Diffstat (limited to 'doc')
-rw-r--r--doc/hackersguide/Makefile.am6
1 files 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