chiark / gitweb /
server/: Maybe use GNU ADNS rather than mLib's `bres' for name resolution.
[tripe] / server / Makefile.am
... / ...
CommitLineData
1### -*-makefile-*-
2###
3### Makefile for TrIPE server
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
25include $(top_srcdir)/vars.am
26
27sbin_PROGRAMS =
28man_MANS =
29
30LDADD = $(libtripe) $(libpriv) \
31 $(catacomb_LIBS) $(ADNS_LIBS)
32
33###--------------------------------------------------------------------------
34### The main server.
35
36sbin_PROGRAMS += tripe
37
38tripe_SOURCES =
39
40## Main header file.
41tripe_SOURCES += tripe.h
42
43## Main sources.
44tripe_SOURCES += servutil.c
45tripe_SOURCES += addrmap.c
46tripe_SOURCES += keymgmt.c
47tripe_SOURCES += bulkcrypto.c
48tripe_SOURCES += dh.c
49tripe_SOURCES += keyset.c
50tripe_SOURCES += keyexch.c
51tripe_SOURCES += chal.c
52tripe_SOURCES += peer.c
53tripe_SOURCES += privsep.c
54tripe_SOURCES += admin.c
55tripe_SOURCES += tripe.c
56
57## Tunnel drivers.
58tripe_SOURCES += tun-std.c
59tripe_SOURCES += tun-slip.c
60
61## Server manual page.
62man_MANS += tripe.8tripe
63CLEANFILES += tripe.8tripe
64EXTRA_DIST += tripe.8.in
65
66## The admin protocol manual page.
67man_MANS += tripe-admin.5tripe
68CLEANFILES += tripe-admin.5tripe
69EXTRA_DIST += tripe-admin.5.in
70
71## Services manual page.
72man_MANS += tripe-service.7tripe
73CLEANFILES += tripe-service.7tripe
74EXTRA_DIST += tripe-service.7.in
75
76###----- That's all, folks --------------------------------------------------