chiark / gitweb /
server/admin.c: Remove spurious `ping' in usage message.
[tripe] / priv / Makefile.am
CommitLineData
388e0319
MW
1### -*-makefile-*-
2###
3### Makefile for privilege separation
4###
5### (c) 2008 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.
388e0319 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.
388e0319
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/>.
388e0319
MW
24
25include $(top_srcdir)/vars.am
26
27noinst_LIBRARIES = libpriv.a
28libexec_PROGRAMS = tripe-privhelper
29man_MANS =
30
530f09cb 31LDADD = libpriv.a $(libcommon) $(mLib_LIBS)
f4d9c34f 32
388e0319
MW
33###--------------------------------------------------------------------------
34### Library.
35
36libpriv_a_SOURCES =
37
38## Header.
39libpriv_a_SOURCES += priv.h
40
41## Communications.
42libpriv_a_SOURCES += comm.c
43
44###--------------------------------------------------------------------------
45### Helper.
46
47## The progam itself.
48tripe_privhelper_SOURCES = helper.c
388e0319
MW
49
50## Manual page.
0647ba7c
MW
51man_MANS += tripe-privhelper.8tripe
52CLEANFILES += tripe-privhelper.8tripe
388e0319
MW
53EXTRA_DIST += tripe-privhelper.8.in
54
55###----- That's all, folks --------------------------------------------------