chiark / gitweb /
server/{keymgmt.c,tripe-admin.5.in}: Improve key-management errors.
[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
2fa80010 56SUBDIRS += py
6005ef9b 57SUBDIRS += peerdb
2aff5dbb
MW
58endif
59
6b6ad670
MW
60## Key-management.
61if HAVE_PYCATACOMB
62SUBDIRS += keys
63endif
64
65## Graphical monitor.
66if HAVE_PYGTK
67SUBDIRS += mon
68endif
69
a4f886c3
MW
70## Contributed stuff.
71SUBDIRS += contrib
72
1c5f4539
MW
73## Testing.
74SUBDIRS += t
75
6b6ad670
MW
76###--------------------------------------------------------------------------
77### The pkg-config file.
78
79pkgconfigdir = $(libdir)/pkgconfig
80pkgconfig_DATA = tripe.pc
81EXTRA_DIST += tripe.pc.in
82CLEANFILES += tripe.pc
83
84tripe.pc: tripe.pc.in Makefile
2171b19e 85 $(SUBST) $(srcdir)/tripe.pc.in >$@.new $(SUBSTITUTIONS) && \
6b6ad670
MW
86 mv $@.new $@
87
88###--------------------------------------------------------------------------
89### Release tweaking.
90
91## Distcheck tweaks.
09cedbd2 92DISTCHECK_TUNNELS = slip
6b6ad670
MW
93
94DISTCHECK_CONFIGURE_FLAGS = \
95 --with-tunnel='$(DISTCHECK_TUNNELS)' \
96 --with-wireshark='$${libdir}/wireshark/plugins'
97
98## Release number.
99dist-hook::
100 echo $(VERSION) >$(distdir)/RELEASE
101
102## Additional build tools.
103EXTRA_DIST += config/confsubst
12475f48 104EXTRA_DIST += config/auto-version
6b6ad670
MW
105
106###--------------------------------------------------------------------------
107### Debian.
108
109## General stuff.
110EXTRA_DIST += debian/rules
111EXTRA_DIST += debian/control
112EXTRA_DIST += debian/changelog
113EXTRA_DIST += debian/copyright
114
115## pkstream
116EXTRA_DIST += debian/pkstream.copyright
117EXTRA_DIST += debian/pkstream.install
118
c64d8cd5
MW
119## pathmtu
120EXTRA_DIST += debian/pathmtu.copyright
121EXTRA_DIST += debian/pathmtu.install
122
6b6ad670
MW
123## server and client
124EXTRA_DIST += debian/tripe.README
125EXTRA_DIST += debian/tripe.dirs
126EXTRA_DIST += debian/tripe.install
127EXTRA_DIST += debian/tripe.postinst
128EXTRA_DIST += debian/tripe.logrotate
129
49f86fe4
MW
130## uslip
131EXTRA_DIST += debian/tripe-uslip.install
132
6b6ad670
MW
133## keys
134EXTRA_DIST += debian/tripe-keys.install
135
2fa80010
MW
136## modules
137EXTRA_DIST += debian/python-tripe.install
138
a62f8e8a
MW
139## peer services
140EXTRA_DIST += debian/tripe-peer-services.dirs
141EXTRA_DIST += debian/tripe-peer-services.install
142
6b6ad670
MW
143## monitor
144EXTRA_DIST += debian/tripemon.install
145
146## wireshark
147EXTRA_DIST += debian/tripe-wireshark.install
148
6b6ad670 149###----- That's all, folks --------------------------------------------------