chiark / gitweb /
server/tests.at: Add a retry loop in `COMMS_EPING'.
[tripe] / svc / Makefile.am
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
26 include $(top_srcdir)/vars.am
27
28 servicesdir = ${pkglibdir}/services
29
30 services_SCRIPTS         =
31 man_MANS                 =
32
33 ###--------------------------------------------------------------------------
34 ### Services.
35
36 ## Services manual page.
37 man_MANS                += tripe-service.7
38 CLEANFILES              += tripe-service.7
39 EXTRA_DIST              += tripe-service.7.in
40
41 ## Handle dynamic connections.
42 services_SCRIPTS        += connect
43 CLEANFILES              += connect
44 EXTRA_DIST              += connect.in
45
46 man_MANS                += connect.8
47 CLEANFILES              += connect.8
48 EXTRA_DIST              += connect.8.in
49
50 connect: connect.in Makefile
51         $(SUBST) $(srcdir)/connect.in >$@.new $(SUBSTITUTIONS) && \
52                 chmod +x $@.new && mv $@.new $@
53
54 ## Watch for peers arriving and disconnecting.
55 services_SCRIPTS        += watch
56 CLEANFILES              += watch
57 EXTRA_DIST              += watch.in
58
59 man_MANS                += watch.8
60 CLEANFILES              += watch.8
61 EXTRA_DIST              += watch.8.in
62
63 watch: watch.in Makefile
64         $(SUBST) $(srcdir)/watch.in >$@.new $(SUBSTITUTIONS) && \
65                 chmod +x $@.new && mv $@.new $@
66
67 ## Watch D-Bus to keep track of external connectivity.
68 services_SCRIPTS        += conntrack
69 CLEANFILES              += conntrack
70 EXTRA_DIST              += conntrack.in
71
72 man_MANS                += conntrack.8
73 CLEANFILES              += conntrack.8
74 EXTRA_DIST              += conntrack.8.in
75
76 conntrack: conntrack.in Makefile
77         $(SUBST) $(srcdir)/conntrack.in >$@.new $(SUBSTITUTIONS) && \
78                 chmod +x $@.new && mv $@.new $@
79
80 ## Bring up an interface.
81 sbin_SCRIPTS             = tripe-ifup
82 CLEANFILES              += tripe-ifup
83 EXTRA_DIST              += tripe-ifup.in
84
85 man_MANS                += tripe-ifup.8
86 CLEANFILES              += tripe-ifup.8
87 EXTRA_DIST              += tripe-ifup.8.in
88
89 tripe-ifup: tripe-ifup.in Makefile
90         $(SUBST) $(srcdir)/tripe-ifup.in >$@.new $(SUBSTITUTIONS) && \
91                 chmod +x $@.new && mv $@.new $@
92
93 ###----- That's all, folks --------------------------------------------------
94