c44060007dd25426c4eac895ddbdec9edbff7a6c
[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 if SILC_BEOS
27 SUBDIRS=beos
28 else
29 SUBDIRS=unix
30 endif
31 endif
32 endif
33
34 noinst_LIBRARIES = libsilcutil.a
35
36 libsilcutil_a_SOURCES = \
37         silcbuffmt.c \
38         silcconfig.c \
39         silclog.c \
40         silcmemory.c \
41         silcnet.c \
42         silcschedule.c \
43         silcfileutil.c \
44         silcutil.c \
45         silchashtable.c \
46         silcsockconn.c  \
47         silcprotocol.c
48
49 if SILC_DIST_TOOLKIT
50 include_HEADERS =       \
51         silcbuffer.h    \
52         silcbuffmt.h    \
53         silcconfig.h    \
54         silchashtable.h \
55         silclog.h       \
56         silcmemory.h    \
57         silcmutex.h     \
58         silcnet.h       \
59         silcschedule.h  \
60         silcsockconn.h  \
61         silcprotocol.h  \
62         silcthread.h    \
63         silclist.h      \
64         silcdlist.h     \
65         silcfileutil.h  \
66         silcutil.h
67 endif
68
69 EXTRA_DIST = *.h
70
71 include $(top_srcdir)/Makefile.defines.in