configure.ac: Abolish use of `libtool'.
[tripe] / svc / Makefile.am
... / ...
CommitLineData
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
28servicesdir = ${pkglibdir}/services
29
30services_SCRIPTS =
31man_MANS =
32
33###--------------------------------------------------------------------------
34### Services.
35
36## Handle dynamic connections.
37services_SCRIPTS += connect
38CLEANFILES += connect
39EXTRA_DIST += connect.in
40
41man_MANS += connect.8tripe
42CLEANFILES += connect.8tripe
43EXTRA_DIST += connect.8.in
44
45connect: connect.in Makefile
46 $(SUBST) $(srcdir)/connect.in >$@.new $(SUBSTITUTIONS) && \
47 chmod +x $@.new && mv $@.new $@
48
49## Watch D-Bus to keep track of external connectivity.
50services_SCRIPTS += conntrack
51CLEANFILES += conntrack
52EXTRA_DIST += conntrack.in
53
54man_MANS += conntrack.8tripe
55CLEANFILES += conntrack.8tripe
56EXTRA_DIST += conntrack.8.in
57
58conntrack: conntrack.in Makefile
59 $(SUBST) $(srcdir)/conntrack.in >$@.new $(SUBSTITUTIONS) && \
60 chmod +x $@.new && mv $@.new $@
61
62## Bring up an interface.
63sbin_SCRIPTS = tripe-ifup
64CLEANFILES += tripe-ifup
65EXTRA_DIST += tripe-ifup.in
66
67man_MANS += tripe-ifup.8tripe
68CLEANFILES += tripe-ifup.8tripe
69EXTRA_DIST += tripe-ifup.8.in
70
71tripe-ifup: tripe-ifup.in Makefile
72 $(SUBST) $(srcdir)/tripe-ifup.in >$@.new $(SUBSTITUTIONS) && \
73 chmod +x $@.new && mv $@.new $@
74
75###----- That's all, folks --------------------------------------------------