chiark / gitweb /
Rename `common/libtripe.a' to `.../libcommon.a'.
[tripe] / server / Makefile.am
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
25 include $(top_srcdir)/vars.am
26
27 sbin_PROGRAMS            =
28 noinst_PROGRAMS          =
29 man_MANS                 =
30
31 LDADD                    = $(libcommon) $(libpriv) \
32                                 $(catacomb_LIBS) $(ADNS_LIBS)
33
34 ###--------------------------------------------------------------------------
35 ### The main server.
36
37 sbin_PROGRAMS           += tripe
38
39 tripe_SOURCES            =
40
41 ## Main header file.
42 tripe_SOURCES           += tripe.h
43
44 ## Main sources.
45 tripe_SOURCES           += servutil.c
46 tripe_SOURCES           += addrmap.c
47 tripe_SOURCES           += keymgmt.c
48 tripe_SOURCES           += bulkcrypto.c
49 tripe_SOURCES           += dh.c
50 tripe_SOURCES           += keyset.c
51 tripe_SOURCES           += keyexch.c
52 tripe_SOURCES           += chal.c
53 tripe_SOURCES           += peer.c
54 tripe_SOURCES           += privsep.c
55 tripe_SOURCES           += admin.c
56 tripe_SOURCES           += tripe.c
57
58 ## Tunnel drivers.
59 tripe_SOURCES           += tun-std.c
60 tripe_SOURCES           += tun-slip.c
61
62 ## Server manual page.
63 man_MANS                += tripe.8tripe
64 CLEANFILES              += tripe.8tripe
65 EXTRA_DIST              += tripe.8.in
66
67 ## The admin protocol manual page.
68 man_MANS                += tripe-admin.5tripe
69 CLEANFILES              += tripe-admin.5tripe
70 EXTRA_DIST              += tripe-admin.5.in
71
72 ## Services manual page.
73 man_MANS                += tripe-service.7tripe
74 CLEANFILES              += tripe-service.7tripe
75 EXTRA_DIST              += tripe-service.7.in
76
77 ###--------------------------------------------------------------------------
78 ### Unit-test program.
79
80 noinst_PROGRAMS         += tripe-test
81
82 tripe_test_SOURCES       = test.c
83
84 tripe_test_SOURCES      += admin.c
85 tripe_test_SOURCES      += addrmap.c
86 tripe_test_SOURCES      += bulkcrypto.c
87 tripe_test_SOURCES      += chal.c
88 tripe_test_SOURCES      += dh.c
89 tripe_test_SOURCES      += keyexch.c
90 tripe_test_SOURCES      += keymgmt.c
91 tripe_test_SOURCES      += keyset.c
92 tripe_test_SOURCES      += peer.c
93 tripe_test_SOURCES      += privsep.c
94 tripe_test_SOURCES      += servutil.c
95
96 tripe_test_SOURCES      += tun-std.c
97 tripe_test_SOURCES      += tun-slip.c
98
99 ###----- That's all, folks --------------------------------------------------