chiark / gitweb /
server/tests.at: Work around strace's attempt to overwrite core files.
[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
1c5f4539
MW
70## Testing.
71SUBDIRS += t
72
6b6ad670
MW
73###--------------------------------------------------------------------------
74### The pkg-config file.
75
76pkgconfigdir = $(libdir)/pkgconfig
77pkgconfig_DATA = tripe.pc
78EXTRA_DIST += tripe.pc.in
79CLEANFILES += tripe.pc
80
81tripe.pc: tripe.pc.in Makefile
2171b19e 82 $(SUBST) $(srcdir)/tripe.pc.in >$@.new $(SUBSTITUTIONS) && \
6b6ad670
MW
83 mv $@.new $@
84
85###--------------------------------------------------------------------------
86### Release tweaking.
87
88## Distcheck tweaks.
89DISTCHECK_TUNNELS = linux bsd unet slip
90
91DISTCHECK_CONFIGURE_FLAGS = \
92 --with-tunnel='$(DISTCHECK_TUNNELS)' \
93 --with-wireshark='$${libdir}/wireshark/plugins'
94
95## Release number.
96dist-hook::
97 echo $(VERSION) >$(distdir)/RELEASE
98
99## Additional build tools.
100EXTRA_DIST += config/confsubst
12475f48 101EXTRA_DIST += config/auto-version
6b6ad670
MW
102
103###--------------------------------------------------------------------------
104### Debian.
105
106## General stuff.
107EXTRA_DIST += debian/rules
108EXTRA_DIST += debian/control
109EXTRA_DIST += debian/changelog
110EXTRA_DIST += debian/copyright
111
112## pkstream
113EXTRA_DIST += debian/pkstream.copyright
114EXTRA_DIST += debian/pkstream.install
115
c64d8cd5
MW
116## pathmtu
117EXTRA_DIST += debian/pathmtu.copyright
118EXTRA_DIST += debian/pathmtu.install
119
6b6ad670
MW
120## server and client
121EXTRA_DIST += debian/tripe.README
122EXTRA_DIST += debian/tripe.dirs
123EXTRA_DIST += debian/tripe.install
124EXTRA_DIST += debian/tripe.postinst
125EXTRA_DIST += debian/tripe.logrotate
126
49f86fe4
MW
127## uslip
128EXTRA_DIST += debian/tripe-uslip.install
129
6b6ad670
MW
130## keys
131EXTRA_DIST += debian/tripe-keys.install
132
2fa80010
MW
133## modules
134EXTRA_DIST += debian/python-tripe.install
135
a62f8e8a
MW
136## peer services
137EXTRA_DIST += debian/tripe-peer-services.dirs
138EXTRA_DIST += debian/tripe-peer-services.install
139
6b6ad670
MW
140## monitor
141EXTRA_DIST += debian/tripemon.install
142
143## wireshark
144EXTRA_DIST += debian/tripe-wireshark.install
145
6b6ad670 146###----- That's all, folks --------------------------------------------------