chiark / gitweb /
wireshark/packet-tripe.c: Catch up with Wireshark API changes.
[tripe] / svc / Makefile.am
CommitLineData
2aff5dbb
MW
1### -*-makefile-*-
2###
3### Makefile for TrIPE services
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
a62f8e8a
MW
28servicesdir = ${pkglibdir}/services
29
30services_SCRIPTS =
2aff5dbb
MW
31man_MANS =
32
33###--------------------------------------------------------------------------
34### Services.
35
a62f8e8a
MW
36## Handle dynamic connections.
37services_SCRIPTS += connect
38CLEANFILES += connect
39EXTRA_DIST += connect.in
40
0647ba7c
MW
41man_MANS += connect.8tripe
42CLEANFILES += connect.8tripe
a62f8e8a
MW
43EXTRA_DIST += connect.8.in
44
45connect: connect.in Makefile
2171b19e 46 $(SUBST) $(srcdir)/connect.in >$@.new $(SUBSTITUTIONS) && \
a62f8e8a
MW
47 chmod +x $@.new && mv $@.new $@
48
2ec90437
MW
49## Watch D-Bus to keep track of external connectivity.
50services_SCRIPTS += conntrack
51CLEANFILES += conntrack
52EXTRA_DIST += conntrack.in
53
0647ba7c
MW
54man_MANS += conntrack.8tripe
55CLEANFILES += conntrack.8tripe
2ec90437
MW
56EXTRA_DIST += conntrack.8.in
57
58conntrack: conntrack.in Makefile
2171b19e 59 $(SUBST) $(srcdir)/conntrack.in >$@.new $(SUBSTITUTIONS) && \
2ec90437
MW
60 chmod +x $@.new && mv $@.new $@
61
a62f8e8a
MW
62## Bring up an interface.
63sbin_SCRIPTS = tripe-ifup
64CLEANFILES += tripe-ifup
65EXTRA_DIST += tripe-ifup.in
66
0647ba7c
MW
67man_MANS += tripe-ifup.8tripe
68CLEANFILES += tripe-ifup.8tripe
a62f8e8a
MW
69EXTRA_DIST += tripe-ifup.8.in
70
71tripe-ifup: tripe-ifup.in Makefile
2171b19e 72 $(SUBST) $(srcdir)/tripe-ifup.in >$@.new $(SUBSTITUTIONS) && \
a62f8e8a
MW
73 chmod +x $@.new && mv $@.new $@
74
2aff5dbb 75###----- That's all, folks --------------------------------------------------