updates.
[silc.git] / lib / silcutil / Makefile.am
1 #
2 #  Makefile.am
3 #
4 #  Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
5 #
6 #  Copyright (C) 2000 Pekka Riikonen
7 #
8 #  This program is free software; you can redistribute it and/or modify
9 #  it under the terms of the GNU General Public License as published by
10 #  the Free Software Foundation; either version 2 of the License, or
11 #  (at your option) any later version.
12 #
13 #  This program is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #  GNU General Public License for more details.
17 #
18
19 AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
20
21 if SILC_WIN32
22 SUBDIRS=win32
23 else
24 SUBDIRS=unix
25 endif
26
27 noinst_LIBRARIES = libsilcutil.a
28
29 libsilcutil_a_SOURCES = \
30         silcbuffmt.c \
31         silcconfig.c \
32         silclog.c \
33         silcmemory.c \
34         silcnet.c \
35         silcschedule.c \
36         silcutil.c \
37         silchashtable.c \
38         silcsockconn.c  \
39         silcprotocol.c
40
41 include_HEADERS =       \
42         silcbuffer.h    \
43         silcbuffmt.h    \
44         silcbufutil.h   \
45         silcconfig.h    \
46         silchashtable.h \
47         silclog.h       \
48         silcmemory.h    \
49         silcmutex.h     \
50         silcnet.h       \
51         silcschedule.h  \
52         silcsockconn.h  \
53         silcprotocol.h  \
54         silcthread.h    \
55         silcutil.h
56
57 EXTRA_DIST = *.h
58
59 include $(top_srcdir)/Makefile.defines.in