chiark / gitweb /
server/bulkcrypto.c (gencomp_chal): Remove pointless extra `tagsz' member.
[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 man_MANS                 =
29
30 LDADD                    = $(libtripe) $(libpriv) $(catacomb_LIBS)
31
32 ###--------------------------------------------------------------------------
33 ### The main server.
34
35 sbin_PROGRAMS           += tripe
36
37 tripe_SOURCES            =
38
39 ## Main header file.
40 tripe_SOURCES           += tripe.h
41
42 ## Main sources.
43 tripe_SOURCES           += servutil.c
44 tripe_SOURCES           += addrmap.c
45 tripe_SOURCES           += keymgmt.c
46 tripe_SOURCES           += bulkcrypto.c
47 tripe_SOURCES           += dh.c
48 tripe_SOURCES           += keyset.c
49 tripe_SOURCES           += keyexch.c
50 tripe_SOURCES           += chal.c
51 tripe_SOURCES           += peer.c
52 tripe_SOURCES           += privsep.c
53 tripe_SOURCES           += admin.c
54 tripe_SOURCES           += tripe.c
55
56 ## Tunnel drivers.
57 tripe_SOURCES           += tun-std.c
58 tripe_SOURCES           += tun-slip.c
59
60 ## Server manual page.
61 man_MANS                += tripe.8tripe
62 CLEANFILES              += tripe.8tripe
63 EXTRA_DIST              += tripe.8.in
64
65 ## The admin protocol manual page.
66 man_MANS                += tripe-admin.5tripe
67 CLEANFILES              += tripe-admin.5tripe
68 EXTRA_DIST              += tripe-admin.5.in
69
70 ## Services manual page.
71 man_MANS                += tripe-service.7tripe
72 CLEANFILES              += tripe-service.7tripe
73 EXTRA_DIST              += tripe-service.7.in
74
75 ###----- That's all, folks --------------------------------------------------