-Licenses
[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 CLEANFILES=
23 MAINTAINERCLEANFILES=
24 TESTS=
25
26 # Force delete of target file if command fails.
27 # Generally better behaviour but it requires GNU make. Harmless otherwise.
28 .DELETE_ON_ERROR:
29
30 # This target is used for "httpd.conf.pl" generator.
31 MODPERL_PM=
32 EXTRA_DIST+=$(MODPERL_PM)
33 MODPERL_PM-print: $(MODPERL_PM)
34         @echo "MODPERL_PM:$(subdir):$(MODPERL_PM)"
35         @for subdir in . $(SUBDIRS);do \
36                 if test "$$subdir" = . -o "$$subdir" = intl -o "$$subdir" = po -o "$$subdir" = m4;then :;else \
37                         (cd "$$subdir" && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \
38                         fi; \
39                 done
40
41 # PiNG is our exchange format. Prevent: make: Circular %.ppm <- %.EXT dependency dropped.
42
43 # Prevent gs(1) EPIPE as it writes about 2x more data out: ( ... ;cat >/dev/null)
44 %.png: %.fig Makefile
45         $(PATH_FIG2DEV) -L ppm -S4 -m1.75 -b10 $< | ($(PATH_PNMGAMMA) 0.4;cat >/dev/null) | $(PATH_PNMTOPNG) >$@
46
47 %.png: %-badgamma.ppm
48         $(PATH_PNMGAMMA) 0.4 <$< | $(PATH_PNMTOPNG) >$@
49
50 %.gif: %.png
51         $(PATH_PNGTOPNM) $< | $(PATH_PPMQUANT) -quiet 256 | $(PATH_PPMTOGIF) -quiet -sort >$@
52
53 %.png: %.dia $(top_srcdir)/dia-w.sh
54         $(top_srcdir)/dia-w.sh --nosplash --export $@ $<
55
56 %.svg: %.dia $(top_srcdir)/dia-w.sh
57         $(top_srcdir)/dia-w.sh --nosplash --export $@ $<
58
59 # Optionally: basename_svg_DPI=30
60 %.png: %.svg
61         $(PATH_INKSCAPE) --export-png=$@ $(if $($*_svg_DPI),--export-dpi=$($*_svg_DPI)) --export-background=white $<
62