a88f243ba4c8cd2cbc21b3c3e77b06c310d41ec5
[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         silcbufutil.h   \
50         silcconfig.h    \
51         silchashtable.h \
52         silclog.h       \
53         silcmemory.h    \
54         silcmutex.h     \
55         silcnet.h       \
56         silcschedule.h  \
57         silcsockconn.h  \
58         silcprotocol.h  \
59         silcthread.h    \
60         silclist.h      \
61         silcdlist.h     \
62         silcfileutil.h  \
63         silcutil.h
64 endif
65
66 EXTRA_DIST = *.h
67
68 include $(top_srcdir)/Makefile.defines.in