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