Release: 1.1.1 -> 1.1.2cvs
[udpgate.git] / Makefile-head.am
1 # $Id$
2 # automake source include to the begin of all Makefile.am's
3 # Copyright (C) 2004 Jan Kratochvil <project-udpgate@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 # defined WANT_GTK_DOC if you plan to include macros/Makefile-gtk-doc.am
20
21
22 # Set all needed variables to their empty values to prevent "variable `...' not defined"
23 # Any further settings should be done exclusively by += operator
24 EXTRA_DIST=
25 CLEANFILES=
26 MAINTAINERCLEANFILES=
27 INCLUDES=
28 bin_PROGRAMS=
29
30 # Custom variables
31 localedir=$(datadir)/locale
32
33 # Standard settings
34 INCLUDES+=-DLOCALEDIR=\"$(localedir)\"
35 INCLUDES+=-I$(top_srcdir)/intl
36
37 # Force delete of target file if command fails.
38 # Generally better behaviour but it requires GNU make. Harmless otherwise.
39 .DELETE_ON_ERROR:
40
41
42 # This target is used during ./autogen.pl POTFILES.in generation
43 distfiles: $(DISTFILES)
44         @if test -n "$(DISTFILES_PRINT)";then \
45                 echo -n ":DISTFILES:"; \
46                 for distfile in . $(DISTFILES);do \
47                         if test -n 1 \
48                                         -a "$$distfile" '!=' . \
49                                         -a "$$distfile" '!=' Makefile.am \
50                                         -a "$$distfile" '!=' Makefile.in \
51                                         ;then \
52                                 echo -n " $(subdir)/$$distfile"; \
53                                 fi; \
54                         done; \
55                 echo; \
56         fi;
57         @for subdir in . $(SUBDIRS);do \
58                 if test "$$subdir" = . -o "$$subdir" = intl -o "$$subdir" = po -o "$$subdir" = m4;then :;else \
59                         (cd "$$subdir" && $(MAKE) $(AM_MAKEFLAGS) distfiles) || exit 1; \
60                 fi; \
61         done
62
63
64 if HAVE_PERL
65 %.pod: %.pod.pl
66         $(PERL) $< >$@
67
68 endif
69 if HAVE_POD2MAN
70 %.1: %.pod
71         $(POD2MAN) --section=1 $< >$@
72
73 endif