doc/tripe-service.5: New manpage describing service providers.
[tripe] / Makefile.am
CommitLineData
6b6ad670
MW
1### -*-makefile-*-
2###
3### Makefile for TrIPE
4###
5### (c) 2001 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
26include $(top_srcdir)/vars.am
27
28SUBDIRS =
29
30###--------------------------------------------------------------------------
31### Subdirectories.
32
33## Core components.
34SUBDIRS += common
49f86fe4 35SUBDIRS += uslip
6b6ad670 36SUBDIRS += client
388e0319 37SUBDIRS += priv
6b6ad670
MW
38SUBDIRS += server
39SUBDIRS += proxy
40SUBDIRS += pkstream
41SUBDIRS += init
42
c64d8cd5
MW
43## Path MTU discovery.
44if PATHMTU
45SUBDIRS += pathmtu
46endif
47
6b6ad670
MW
48## Wireshark.
49if HAVE_WIRESHARK
50SUBDIRS += wireshark
51endif
52
2aff5dbb
MW
53## Services.
54if HAVE_PYTHON
55SUBDIRS += svc
56endif
57
6b6ad670
MW
58## Key-management.
59if HAVE_PYCATACOMB
60SUBDIRS += keys
61endif
62
63## Graphical monitor.
64if HAVE_PYGTK
65SUBDIRS += mon
66endif
67
1c5f4539
MW
68## Testing.
69SUBDIRS += t
70
6b6ad670
MW
71###--------------------------------------------------------------------------
72### The pkg-config file.
73
74pkgconfigdir = $(libdir)/pkgconfig
75pkgconfig_DATA = tripe.pc
76EXTRA_DIST += tripe.pc.in
77CLEANFILES += tripe.pc
78
79tripe.pc: tripe.pc.in Makefile
80 $(confsubst) $(srcdir)/tripe.pc.in >$@.new $(SUBSTITUTIONS) && \
81 mv $@.new $@
82
83###--------------------------------------------------------------------------
84### Release tweaking.
85
86## Distcheck tweaks.
87DISTCHECK_TUNNELS = linux bsd unet slip
88
89DISTCHECK_CONFIGURE_FLAGS = \
90 --with-tunnel='$(DISTCHECK_TUNNELS)' \
91 --with-wireshark='$${libdir}/wireshark/plugins'
92
93## Release number.
94dist-hook::
95 echo $(VERSION) >$(distdir)/RELEASE
96
97## Additional build tools.
98EXTRA_DIST += config/confsubst
12475f48 99EXTRA_DIST += config/auto-version
6b6ad670
MW
100
101###--------------------------------------------------------------------------
102### Debian.
103
104## General stuff.
105EXTRA_DIST += debian/rules
106EXTRA_DIST += debian/control
107EXTRA_DIST += debian/changelog
108EXTRA_DIST += debian/copyright
109
110## pkstream
111EXTRA_DIST += debian/pkstream.copyright
112EXTRA_DIST += debian/pkstream.install
113
c64d8cd5
MW
114## pathmtu
115EXTRA_DIST += debian/pathmtu.copyright
116EXTRA_DIST += debian/pathmtu.install
117
6b6ad670
MW
118## server and client
119EXTRA_DIST += debian/tripe.README
120EXTRA_DIST += debian/tripe.dirs
121EXTRA_DIST += debian/tripe.install
122EXTRA_DIST += debian/tripe.postinst
123EXTRA_DIST += debian/tripe.logrotate
124
49f86fe4
MW
125## uslip
126EXTRA_DIST += debian/tripe-uslip.install
127
6b6ad670
MW
128## keys
129EXTRA_DIST += debian/tripe-keys.install
130
131## monitor
132EXTRA_DIST += debian/tripemon.install
133
134## wireshark
135EXTRA_DIST += debian/tripe-wireshark.install
136
6b6ad670 137###----- That's all, folks --------------------------------------------------