chiark / gitweb /
server/tripe.c, server/standalone.c: Split `main' out into a seprate file.
[tripe] / server / Makefile.am
CommitLineData
6b6ad670
MW
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###
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_PROGRAMS =
19220671 28noinst_PROGRAMS =
6b6ad670
MW
29man_MANS =
30
530f09cb 31LDADD = $(libcommon) $(libpriv) \
971e5689 32 $(catacomb_LIBS) $(ADNS_LIBS)
7bd7331e 33
6b6ad670
MW
34###--------------------------------------------------------------------------
35### The main server.
36
37sbin_PROGRAMS += tripe
38
39tripe_SOURCES =
6b6ad670
MW
40
41## Main header file.
42tripe_SOURCES += tripe.h
43
44## Main sources.
45tripe_SOURCES += servutil.c
c8e02c8a 46tripe_SOURCES += addrmap.c
6b6ad670 47tripe_SOURCES += keymgmt.c
a93aacce 48tripe_SOURCES += bulkcrypto.c
5b9f3d37 49tripe_SOURCES += dh.c
6b6ad670
MW
50tripe_SOURCES += keyset.c
51tripe_SOURCES += keyexch.c
52tripe_SOURCES += chal.c
53tripe_SOURCES += peer.c
388e0319 54tripe_SOURCES += privsep.c
6b6ad670
MW
55tripe_SOURCES += admin.c
56tripe_SOURCES += tripe.c
98b9b136 57tripe_SOURCES += standalone.c
6b6ad670
MW
58
59## Tunnel drivers.
cd1f3310 60tripe_SOURCES += tun-std.c
6b6ad670
MW
61tripe_SOURCES += tun-slip.c
62
63## Server manual page.
0647ba7c
MW
64man_MANS += tripe.8tripe
65CLEANFILES += tripe.8tripe
6b6ad670
MW
66EXTRA_DIST += tripe.8.in
67
6b6ad670 68## The admin protocol manual page.
0647ba7c
MW
69man_MANS += tripe-admin.5tripe
70CLEANFILES += tripe-admin.5tripe
a62f8e8a 71EXTRA_DIST += tripe-admin.5.in
6b6ad670 72
97f898fb
MW
73## Services manual page.
74man_MANS += tripe-service.7tripe
75CLEANFILES += tripe-service.7tripe
76EXTRA_DIST += tripe-service.7.in
77
19220671
MW
78###--------------------------------------------------------------------------
79### Unit-test program.
80
81noinst_PROGRAMS += tripe-test
82
83tripe_test_SOURCES = test.c
84
85tripe_test_SOURCES += admin.c
86tripe_test_SOURCES += addrmap.c
87tripe_test_SOURCES += bulkcrypto.c
88tripe_test_SOURCES += chal.c
89tripe_test_SOURCES += dh.c
90tripe_test_SOURCES += keyexch.c
91tripe_test_SOURCES += keymgmt.c
92tripe_test_SOURCES += keyset.c
93tripe_test_SOURCES += peer.c
94tripe_test_SOURCES += privsep.c
95tripe_test_SOURCES += servutil.c
98b9b136 96tripe_test_SOURCES += tripe.c
19220671
MW
97
98tripe_test_SOURCES += tun-std.c
99tripe_test_SOURCES += tun-slip.c
100
6b6ad670 101###----- That's all, folks --------------------------------------------------