chiark / gitweb /
doc/tripe-protocol.tex: Start on a new protocol specification.
[tripe] / Makefile.am
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
26 include $(top_srcdir)/vars.am
27
28 SUBDIRS                  =
29
30 ###--------------------------------------------------------------------------
31 ### Subdirectories.
32
33 ## Core components.
34 SUBDIRS                 += common
35 SUBDIRS                 += uslip
36 SUBDIRS                 += client
37 SUBDIRS                 += priv
38 SUBDIRS                 += server
39 SUBDIRS                 += proxy
40 SUBDIRS                 += pkstream
41 SUBDIRS                 += init
42
43 ## Path MTU discovery.
44 SUBDIRS                 += pathmtu
45
46 ## Wireshark.
47 if HAVE_WIRESHARK
48 SUBDIRS                 += wireshark
49 endif
50
51 ## Services.
52 if HAVE_PYTHON
53 if HAVE_PYMLIB
54 SUBDIRS                 += py
55 if HAVE_PYCDB
56 SUBDIRS                 += peerdb
57 SUBDIRS                 += svc
58 endif
59 endif
60 endif
61
62 ## Key-management.
63 if HAVE_PYTHON
64 if HAVE_PYCATACOMB
65 SUBDIRS                 += keys
66 endif
67 endif
68
69 ## Graphical monitor.
70 if HAVE_PYTHON
71 if HAVE_PYMLIB
72 if HAVE_PYGTK
73 SUBDIRS                 += mon
74 endif
75 endif
76 endif
77
78 ## Contributed stuff.
79 SUBDIRS                 += contrib
80
81 ## Testing.
82 SUBDIRS                 += t
83
84 ###--------------------------------------------------------------------------
85 ### Package-configuration file.
86
87 pkgconfigdir             = $(datadir)/pkgconfig
88 pkgconfig_DATA           = tripe.pc
89 EXTRA_DIST              += tripe.pc.in
90 CLEANFILES              += tripe.pc
91
92 tripe.pc: tripe.pc.in Makefile
93         $(SUBST) $(srcdir)/tripe.pc.in >$@.new $(SUBSTITUTIONS) && \
94                 mv $@.new $@
95
96 ###--------------------------------------------------------------------------
97 ### Distribution.
98
99 ## Distcheck tweaks.
100 DISTCHECK_TUNNELS        = slip
101
102 DISTCHECK_CONFIGURE_FLAGS = \
103         --with-tunnel='$(DISTCHECK_TUNNELS)' \
104         --with-wireshark='$${libdir}/wireshark/plugins'
105
106 ## Release number.
107 dist-hook::
108         echo $(VERSION) >$(distdir)/RELEASE
109
110 ## Additional build tools.
111 EXTRA_DIST              += config/confsubst
112 EXTRA_DIST              += config/auto-version
113
114 ###--------------------------------------------------------------------------
115 ### Debian.
116
117 ## General stuff.
118 EXTRA_DIST              += debian/rules
119 EXTRA_DIST              += debian/control
120 EXTRA_DIST              += debian/changelog
121 EXTRA_DIST              += debian/copyright
122 EXTRA_DIST              += debian/compat
123 EXTRA_DIST              += debian/source/format
124
125 ## pkstream
126 EXTRA_DIST              += debian/pkstream.copyright
127 EXTRA_DIST              += debian/pkstream.install
128
129 ## pathmtu
130 EXTRA_DIST              += debian/pathmtu.copyright
131 EXTRA_DIST              += debian/pathmtu.install
132
133 ## server and client
134 EXTRA_DIST              += debian/tripe.README
135 EXTRA_DIST              += debian/tripe.dirs
136 EXTRA_DIST              += debian/tripe.install
137 EXTRA_DIST              += debian/tripe.postinst
138 EXTRA_DIST              += debian/tripe.logrotate
139
140 ## uslip
141 EXTRA_DIST              += debian/tripe-uslip.install
142
143 ## keys
144 EXTRA_DIST              += debian/tripe-keys.install
145
146 ## modules
147 EXTRA_DIST              += debian/python-tripe.install
148
149 ## peer services
150 EXTRA_DIST              += debian/tripe-peer-services.install
151 EXTRA_DIST              += debian/tripe-peer-services.postinst
152
153 ## monitor
154 EXTRA_DIST              += debian/tripemon.install
155
156 ## wireshark
157 EXTRA_DIST              += debian/tripe-wireshark.install
158
159 ###----- That's all, folks --------------------------------------------------