skeleton
[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-udpforward@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 # default DEFAULT_INCLUDES=' -I. -I$(srcdir)'.(dirnames of 'CONFIG_HEADER') ,
29 # we neeed such $(DEFAULT_INCLUDES) but we need to prefer our $(INCLUDES)
30 # thus we postpone them later by moving them to $(AM_CPPFLAGS).
31 # It prevent us the inclusion of own wrappers
32 # when we want direct include during (test) compilations
33 # in $(top_srcdir)/src/libcaptive/include/reactos/
34 # as -I. is always as one of the first '-I's in $(INCLUDES).
35 # It will be utilized in $(top_srcdir)/src/libcaptive/Makefile-libcaptive.am .
36 # It would be also possible to use some #include_next's but it is pretty
37 # hassle to guess the right ordering in such case.
38 # FIXME: $(addprefix ) and $(dir /) are GNU make dependent!
39 AM_CPPFLAGS=-I. -I$(srcdir) $(addprefix -I,$(dir $(CONFIG_HEADER)))
40 # 'DEFAULT_INCLUDES=' will drop its contents.
41 # 'DEFAULT_INCLUDES:=' will cause: automake-X.Y/am/compile.am: DEFAULT_INCLUDES was set with `:=' and is now set with `='
42 # %DEFAULT_INCLUDES% is permitted only in automake system files.
43 # No possibility to keep its state therefore we generate
44 # (I hope) the same contents in 'AM_CPPFLAGS=...' line above
45 DEFAULT_INCLUDES=
46 INCLUDES=
47 bin_PROGRAMS=
48
49 # Custom variables
50 localedir=$(datadir)/locale
51
52 # Standard settings
53 INCLUDES+=-DLOCALEDIR=\"$(localedir)\"
54 INCLUDES+=-I$(top_srcdir)/intl
55
56 # Force delete of target file if command fails.
57 # Generally better behaviour but it requires GNU make. Harmless otherwise.
58 .DELETE_ON_ERROR:
59
60
61 # This target is used during ./autogen.pl POTFILES.in generation
62 distfiles: $(DISTFILES)
63         @if test -n "$(DISTFILES_PRINT)";then \
64                 echo -n ":DISTFILES:"; \
65                 for distfile in . $(DISTFILES);do \
66                         if test -n 1 \
67                                         -a "$$distfile" '!=' . \
68                                         -a "$$distfile" '!=' Makefile.am \
69                                         -a "$$distfile" '!=' Makefile.in \
70                                         ;then \
71                                 if echo " $(BUILT_SOURCES) "|grep -q " $$distfile ";then :;else \
72                                         echo -n " $(subdir)/$$distfile"; \
73                                         fi; \
74                                 fi; \
75                         done; \
76                 echo; \
77                 fi;
78         @for subdir in . $(SUBDIRS);do \
79                 if test "$$subdir" = . -o "$$subdir" = intl -o "$$subdir" = po -o "$$subdir" = m4;then :;else \
80                         (cd "$$subdir" && $(MAKE) $(AM_MAKEFLAGS) distfiles) || exit 1; \
81                         fi; \
82                 done
83
84 dist-hook:
85         for i in _built_sources_pad $(BUILT_SOURCES);do \
86                 $(RM) $(distdir)/$$i; \
87         done
88
89
90 if HAVE_PERL
91 %.pod: %.pod.pl
92         $(PERL) $< >$@
93
94 endif
95 if HAVE_POD2MAN
96 %.1: %.pod
97         $(POD2MAN) --section=1 $< >$@
98
99 endif