Added SILC Tree API, a generic binary search tree interface
[runtime.git] / lib / silcutil / Makefile.ad
1 #
2 #  Makefile.ad
3 #
4 #  Author: Pekka Riikonen <priikone@silcnet.org>
5 #
6 #  Copyright (C) 2000 - 2008 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_SYMBIAN
24 SUBDIRS=symbian
25 else
26 SUBDIRS=unix tests
27 endif
28 endif
29
30 DIST_SUBDIRS=win32 symbian unix tests
31
32 SILC_DIST_SOURCE = stacktrace.c
33 SILC_DIST_HEADER = stacktrace.h
34
35 noinst_LTLIBRARIES = libsilcutil.la
36
37 libsilcutil_la_SOURCES = \
38         $(SILC_DIST_SOURCE) \
39         silcbuffmt.c    \
40         silcconfig.c    \
41         silclog.c       \
42         silcmemory.c    \
43         silcnet.c       \
44         silcschedule.c  \
45         silcfileutil.c  \
46         silcstrutil.c   \
47         silcutil.c      \
48         silchashtable.c \
49         silcutf8.c      \
50         silcstringprep.c \
51         silcfdstream.c  \
52         silcsocketstream.c \
53         silcfsm.c       \
54         silcasync.c     \
55         silctime.c      \
56         silctimer.c     \
57         silcmime.c      \
58         silcstack.c     \
59         silcsnprintf.c  \
60         silcthread.c    \
61         silcdll.c       \
62         silcenv.c       \
63         silcbase64.c    \
64         silcbitops.c    \
65         silcerrno.c     \
66         silcgetopt.c    \
67         silcregex.c     \
68         silcthreadqueue.c \
69         silcrand.c      \
70         silcglobal.c    \
71         silcbufferstream.c \
72         silclocalnetstream.c \
73         silcxml.c       \
74         silcavltree.c
75
76 include_HEADERS =       \
77         $(SILC_DIST_HEADER) \
78         silcbuffer.h    \
79         silcbuffmt.h    \
80         silcconfig.h    \
81         silchashtable.h \
82         silclog.h       \
83         silclog_i.h     \
84         silcmemory.h    \
85         silcmutex.h     \
86         silcatomic.h    \
87         silccond.h      \
88         silcnet.h       \
89         silcnet_i.h     \
90         silcschedule.h  \
91         silcschedule_i.h \
92         silcthread.h    \
93         silcthread_i.h  \
94         silclist.h      \
95         silcdlist.h     \
96         silcfileutil.h  \
97         silcutil.h      \
98         silcstrutil.h   \
99         silcutf8.h      \
100         silcstringprep.h \
101         silctypes.h     \
102         silcstream.h    \
103         silcfdstream.h \
104         silcsocketstream.h \
105         silcsocketstream_i.h \
106         silcfsm.h       \
107         silcfsm_i.h     \
108         silctime.h      \
109         silctimer.h     \
110         silctimer_i.h   \
111         silcmime.h      \
112         silcmime_i.h    \
113         silcasync.h     \
114         silcasync_i.h   \
115         silcstack.h     \
116         silcstack_i.h   \
117         silcsnprintf.h  \
118         silcdll.h       \
119         silcenv.h       \
120         silcbase64.h    \
121         silcbitops.h    \
122         silcerrno.h     \
123         silcgetopt.h    \
124         silcregex.h     \
125         silcthreadqueue.h \
126         silcrand.h      \
127         silcglobal.h    \
128         silcruntime.h   \
129         silcdir.h       \
130         silcbufferstream.h \
131         silclocalnetstream.h \
132         silcxml.h       \
133         silctree.h      \
134         silctree_i.h
135
136 SILC_EXTRA_DIST =
137
138 EXTRA_DIST = *.h $(SILC_EXTRA_DIST)
139
140 include $(top_srcdir)/Makefile.defines.in