chiark / gitweb /
server/admin.c: Remove spurious `ping' in usage message.
[tripe] / keys / Makefile.am
CommitLineData
6b6ad670
MW
1### -*-makefile-*-
2###
3### Makefile for TrIPE key management tool
4###
5### (c) 2001 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of Trivial IP Encryption (TrIPE).
11###
11ad66c2
MW
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.
6b6ad670 16###
11ad66c2
MW
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.
6b6ad670
MW
21###
22### You should have received a copy of the GNU General Public License
11ad66c2 23### along with TrIPE. If not, see <https://www.gnu.org/licenses/>.
6b6ad670
MW
24
25include $(top_srcdir)/vars.am
26
27sbin_SCRIPTS =
28man_MANS =
29
30###--------------------------------------------------------------------------
31### Key-management.
32
33## Key-management script.
34sbin_SCRIPTS += tripe-keys
35EXTRA_DIST += tripe-keys.in
36CLEANFILES += tripe-keys
37
38tripe-keys: tripe-keys.in Makefile
2171b19e 39 $(SUBST) $(srcdir)/tripe-keys.in >$@.new $(SUBSTITUTIONS) && \
8cae2567 40 chmod +x $@.new && mv $@.new $@
6b6ad670
MW
41
42## Manual pages.
0647ba7c
MW
43man_MANS += tripe-keys.8tripe tripe-keys.conf.5tripe
44CLEANFILES += tripe-keys.8tripe tripe-keys.conf.5tripe
fc916a09 45EXTRA_DIST += tripe-keys.8.in tripe-keys.conf.5.in
6b6ad670
MW
46
47## Examples.
48EXTRA_DIST += tripe-keys.master
49
50###----- That's all, folks --------------------------------------------------