chiark / gitweb /
uslip: Fix SLIP escape handling.
[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
MW
36SUBDIRS += client
37SUBDIRS += server
38SUBDIRS += proxy
39SUBDIRS += pkstream
40SUBDIRS += init
41
42## Wireshark.
43if HAVE_WIRESHARK
44SUBDIRS += wireshark
45endif
46
47## Key-management.
48if HAVE_PYCATACOMB
49SUBDIRS += keys
50endif
51
52## Graphical monitor.
53if HAVE_PYGTK
54SUBDIRS += mon
55endif
56
1c5f4539
MW
57## Testing.
58SUBDIRS += t
59
6b6ad670
MW
60###--------------------------------------------------------------------------
61### The pkg-config file.
62
63pkgconfigdir = $(libdir)/pkgconfig
64pkgconfig_DATA = tripe.pc
65EXTRA_DIST += tripe.pc.in
66CLEANFILES += tripe.pc
67
68tripe.pc: tripe.pc.in Makefile
69 $(confsubst) $(srcdir)/tripe.pc.in >$@.new $(SUBSTITUTIONS) && \
70 mv $@.new $@
71
72###--------------------------------------------------------------------------
73### Release tweaking.
74
75## Distcheck tweaks.
76DISTCHECK_TUNNELS = linux bsd unet slip
77
78DISTCHECK_CONFIGURE_FLAGS = \
79 --with-tunnel='$(DISTCHECK_TUNNELS)' \
80 --with-wireshark='$${libdir}/wireshark/plugins'
81
82## Release number.
83dist-hook::
84 echo $(VERSION) >$(distdir)/RELEASE
85
fc916a09
MW
86## Manual page preamble.
87EXTRA_DIST += defs.man.in
88CLEANFILES += defs.man
89
6b6ad670
MW
90## Additional build tools.
91EXTRA_DIST += config/confsubst
92
93###--------------------------------------------------------------------------
94### Debian.
95
96## General stuff.
97EXTRA_DIST += debian/rules
98EXTRA_DIST += debian/control
99EXTRA_DIST += debian/changelog
100EXTRA_DIST += debian/copyright
101
102## pkstream
103EXTRA_DIST += debian/pkstream.copyright
104EXTRA_DIST += debian/pkstream.install
105
106## server and client
107EXTRA_DIST += debian/tripe.README
108EXTRA_DIST += debian/tripe.dirs
109EXTRA_DIST += debian/tripe.install
110EXTRA_DIST += debian/tripe.postinst
111EXTRA_DIST += debian/tripe.logrotate
112
49f86fe4
MW
113## uslip
114EXTRA_DIST += debian/tripe-uslip.install
115
6b6ad670
MW
116## keys
117EXTRA_DIST += debian/tripe-keys.install
118
119## monitor
120EXTRA_DIST += debian/tripemon.install
121
122## wireshark
123EXTRA_DIST += debian/tripe-wireshark.install
124
125
126###----- That's all, folks --------------------------------------------------