chiark / gitweb /
server/admin.c: Remove spurious `ping' in usage message.
[tripe] / mon / Makefile.am
1 ### -*-makefile-*-
2 ###
3 ### Makefile for TrIPE graphical monitor
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 it under
13 ### the terms of the GNU General Public License as published by the Free
14 ### Software Foundation; either version 3 of the License, or (at your
15 ### option) any later version.
16 ###
17 ### TrIPE is distributed in the hope that it will be useful, but WITHOUT
18 ### ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 ### FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 ### for more details.
21 ###
22 ### You should have received a copy of the GNU General Public License
23 ### along with TrIPE.  If not, see <https://www.gnu.org/licenses/>.
24
25 include $(top_srcdir)/vars.am
26
27 bin_SCRIPTS              =
28 man_MANS                 =
29
30 ###--------------------------------------------------------------------------
31 ### Graphical monitor.
32
33 ## Monitor script.
34 bin_SCRIPTS             += tripemon
35 EXTRA_DIST              += tripemon.in
36 CLEANFILES              += tripemon
37
38 tripemon: tripemon.in Makefile
39         $(SUBST) $(srcdir)/tripemon.in >$@.new $(SUBSTITUTIONS) && \
40                 chmod +x $@.new && mv $@.new $@
41
42 ## Manual page.
43 man_MANS                += tripemon.1tripe
44 CLEANFILES              += tripemon.1tripe
45 EXTRA_DIST              += tripemon.1.in
46
47 ###----- That's all, folks --------------------------------------------------