Typo.
[www.jankratochvil.net.git] / Makefile-head.am
1 # $Id$
2 # automake source include to the begin of all Makefile.am's
3 # Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 # Set all needed variables to their empty values to prevent "variable `...' not defined"
20 # Any further settings should be done exclusively by += operator
21 EXTRA_DIST=
22 BUILT_SOURCES=
23 CLEANFILES=
24 MAINTAINERCLEANFILES=
25 noinst_DATA=
26
27 # Force delete of target file if command fails.
28 # Generally better behaviour but it requires GNU make. Harmless otherwise.
29 .DELETE_ON_ERROR:
30
31 %.ppm: %.fig Makefile
32         fig2dev -L ppm -S4 -m1.75 -b10 $< | pnmgamma 0.4 >$@
33
34 %.gif: %.ppm
35         ppmquant -quiet 256 $< | ppmtogif -quiet -sort >$@
36
37 # Prevent: make: Circular %.ppm <- %.gif dependency dropped.
38 #%.ppm: %.gif
39 #       giftopnm $< >$@
40
41 %.png: %.ppm
42         pnmtopng $< >$@
43
44 %.ppm: %.png
45         pngtopnm $< >$@
46
47 %.png: %.dia $(top_srcdir)/dia-w.sh
48         $(top_srcdir)/dia-w.sh --nosplash --export $@ $<
49