chiark / gitweb /
pathmtu/pathmtu.c: Don't explicitly set `_BSD_SOURCE'.
[tripe] / vars.am
... / ...
CommitLineData
1### -*-makefile-*-
2###
3### Definitions used throughout the build system
4###
5### (c) 2008 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of Trivial IP Encryption (TrIPE).
11###
12### TrIPE is free software; you can redistribute it and/or modify
13### it under the terms of the GNU General Public License as published by
14### the Free Software Foundation; either version 2 of the License, or
15### (at your option) any later version.
16###
17### TrIPE is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20### GNU General Public License for more details.
21###
22### You should have received a copy of the GNU General Public License
23### along with TrIPE; if not, write to the Free Software Foundation,
24### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26###--------------------------------------------------------------------------
27### Initial values of common variables.
28
29EXTRA_DIST =
30
31CLEANFILES =
32DISTCLEANFILES =
33MAINTAINERCLEANFILES =
34
35SUFFIXES =
36
37###--------------------------------------------------------------------------
38### Include path.
39
40TRIPE_INCLUDES = \
41 -I$(top_srcdir)/common \
42 -I$(top_srcdir)/priv
43
44AM_CPPFLAGS += $(TRIPE_INCLUDES)
45
46###--------------------------------------------------------------------------
47### Miscellanous useful definitions.
48
49## Libraries of common code.
50libtripe = $(top_builddir)/common/libtripe.a
51libpriv = $(top_builddir)/priv/libpriv.a
52
53###--------------------------------------------------------------------------
54### Standard configuration substitutions.
55
56## Substitute tags in files.
57confsubst = $(top_srcdir)/config/confsubst
58
59SUBSTITUTIONS = \
60 prefix=$(prefix) exec_prefix=$(exec_prefix) \
61 libdir=$(libdir) includedir=$(includedir) \
62 bindir=$(bindir) sbindir=$(sbindir) \
63 configdir=$(configdir) socketdir=$(socketdir) \
64 initconfig=$(initconfig) pkglibdir=$(pkglibdir) \
65 pidfile=$(pidfile) logfile=$(logfile) \
66 PACKAGE=$(PACKAGE) VERSION=$(VERSION) \
67 PYTHON=$(PYTHON)
68
69V_SUBST = $(V_SUBST_$(V))
70V_SUBST_ = $(V_SUBST_$(AM_DEFAULT_VERBOSITY))
71V_SUBST_0 = @echo " SUBST $@";
72SUBST = $(V_SUBST)$(confsubst)
73
74###--------------------------------------------------------------------------
75### Manpage substitutions.
76
77SUFFIXES += .1tripe .1.in .1
78SUFFIXES += .5tripe .5.in
79SUFFIXES += .7tripe .7.in
80SUFFIXES += .8tripe .8.in
81
82mandefs = $(top_srcdir)/common/defs.man
83makesummary = $(top_srcdir)/common/make-summary
84
85V_MAN = $(V_MAN_$(V))
86V_MAN_ = $(V_MAN_$(AM_DEFAULT_VERBOSITY))
87V_MAN_0 = @echo " MAN $@";
88
89.1.in.1 .1.in.1tripe .5.in.5tripe .7.in.7tripe .8.in.8tripe:
90 $(V_MAN)
91 $(AM_V_at)sed '/^\.$$/ d; /^\.\\"/ d' $(mandefs) >$@.defs
92 $(AM_V_at)sed -e '/@@@PRE@@@/ {' -e 'r$@.defs' -e 'd' -e '}' \
93 $< >$@.merge
94 $(AM_V_at)$(confsubst) $@.merge >$@.subst $(SUBSTITUTIONS)
95 $(AM_V_at)awk -f $(makesummary) $@.subst >$@.new
96 $(AM_V_at)rm -f $@.defs $@.merge $@.subst && mv $@.new $@
97
98###----- That's all, folks --------------------------------------------------