Fixed 'distfiles' target after the removal of 'BUILT_SOURCES'.
[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 ":DISTFILES:"; \
46         fi;
47         @for subdir in . $(SUBDIRS);do \
48                 if test "$$subdir" = . -o "$$subdir" = intl -o "$$subdir" = po -o "$$subdir" = m4;then :;else \
49                         (cd "$$subdir" && $(MAKE) $(AM_MAKEFLAGS) distfiles) || exit 1; \
50                 fi; \
51         done
52
53
54 if HAVE_PERL
55 %.pod: %.pod.pl
56         $(PERL) $< >$@
57
58 endif
59 if HAVE_POD2MAN
60 %.1: %.pod
61         $(POD2MAN) --section=1 $< >$@
62
63 endif