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