chiark / gitweb /
server/admin.c: Remove spurious `ping' in usage message.
[tripe] / common / Makefile.am
CommitLineData
6b6ad670
MW
1### -*-makefile-*-
2###
3### Makefile for TrIPE common source files
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
530f09cb 27noinst_LIBRARIES = libcommon.a
6b6ad670
MW
28
29###--------------------------------------------------------------------------
30### Library.
31
530f09cb 32libcommon_a_SOURCES =
6b6ad670
MW
33
34## Protocol definitions.
530f09cb
MW
35libcommon_a_SOURCES += protocol.h
36libcommon_a_SOURCES += slip.h
6b6ad670
MW
37
38## Miscellaneous utilties.
530f09cb 39libcommon_a_SOURCES += util.c util.h
6b6ad670 40
e99aedcf
MW
41###--------------------------------------------------------------------------
42### Documentation.
43
44## Standard manpage preamble.
45EXTRA_DIST += defs.man
46
47## Utility for building summary tables.
48EXTRA_DIST += make-summary
49
6b6ad670 50###----- That's all, folks --------------------------------------------------