+User notification of the probe timeout.
[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 BUILT_SOURCES=
26 CLEANFILES=
27 MAINTAINERCLEANFILES=
28 INCLUDES=
29 bin_PROGRAMS=
30
31 # Custom variables
32 localedir=$(datadir)/locale
33
34 # Standard settings
35 INCLUDES+=-DLOCALEDIR=\"$(localedir)\"
36 INCLUDES+=-I$(top_srcdir)/intl
37
38 # Force delete of target file if command fails.
39 # Generally better behaviour but it requires GNU make. Harmless otherwise.
40 .DELETE_ON_ERROR:
41
42
43 # This target is used during ./autogen.pl POTFILES.in generation
44 distfiles: $(DISTFILES)
45         @if test -n "$(DISTFILES_PRINT)";then \
46                 echo -n ":DISTFILES:"; \
47                 for distfile in . $(DISTFILES);do \
48                         if test -n 1 \
49                                         -a "$$distfile" '!=' . \
50                                         -a "$$distfile" '!=' Makefile.am \
51                                         -a "$$distfile" '!=' Makefile.in \
52                                         ;then \
53                                 if echo " $(BUILT_SOURCES) "|grep -q " $$distfile ";then :;else \
54                                         echo -n " $(subdir)/$$distfile"; \
55                                         fi; \
56                                 fi; \
57                         done; \
58                 echo; \
59                 fi;
60         @for subdir in . $(SUBDIRS);do \
61                 if test "$$subdir" = . -o "$$subdir" = intl -o "$$subdir" = po -o "$$subdir" = m4;then :;else \
62                         (cd "$$subdir" && $(MAKE) $(AM_MAKEFLAGS) distfiles) || exit 1; \
63                         fi; \
64                 done
65
66 dist-hook:
67         for i in _built_sources_pad $(BUILT_SOURCES);do \
68                 $(RM) $(distdir)/$$i; \
69         done
70
71
72 if HAVE_PERL
73 %.pod: %.pod.pl
74         $(PERL) $< >$@
75
76 endif
77 if HAVE_POD2MAN
78 %.1: %.pod
79         $(POD2MAN) --section=1 $< >$@
80
81 endif