updates.
[silc.git] / lib / silcutil / Makefile.am
1 #
2 #  Makefile.am
3 #
4 #  Author: Pekka Riikonen <priikone@silcnet.org>
5 #
6 #  Copyright (C) 2000 - 2002 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; version 2 of the License.
11 #
12 #  This program is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #  GNU General Public License for more details.
16 #
17
18 AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
19
20 if SILC_WIN32
21 SUBDIRS=win32
22 else
23 if SILC_EPOC
24 SUBDIRS=epoc
25 else
26 SUBDIRS=unix
27 endif
28 endif
29
30 noinst_LIBRARIES = libsilcutil.a
31
32 libsilcutil_a_SOURCES = \
33         silcbuffmt.c \
34         silcconfig.c \
35         silclog.c \
36         silcmemory.c \
37         silcnet.c \
38         silcschedule.c \
39         silcfileutil.c \
40         silcutil.c \
41         silchashtable.c \
42         silcsockconn.c  \
43         silcprotocol.c
44
45 if SILC_DIST_TOOLKIT
46 include_HEADERS =       \
47         silcbuffer.h    \
48         silcbuffmt.h    \
49         silcconfig.h    \
50         silchashtable.h \
51         silclog.h       \
52         silcmemory.h    \
53         silcmutex.h     \
54         silcnet.h       \
55         silcschedule.h  \
56         silcsockconn.h  \
57         silcprotocol.h  \
58         silcthread.h    \
59         silclist.h      \
60         silcdlist.h     \
61         silcfileutil.h  \
62         silcutil.h
63 endif
64
65 EXTRA_DIST = *.h
66
67 include $(top_srcdir)/Makefile.defines.in