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