Added SILC XML API
[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         silcxml.c
73
74 include_HEADERS =       \
75         $(SILC_DIST_HEADER) \
76         silcbuffer.h    \
77         silcbuffmt.h    \
78         silcconfig.h    \
79         silchashtable.h \
80         silclog.h       \
81         silclog_i.h     \
82         silcmemory.h    \
83         silcmutex.h     \
84         silcatomic.h    \
85         silccond.h      \
86         silcnet.h       \
87         silcnet_i.h     \
88         silcschedule.h  \
89         silcschedule_i.h \
90         silcthread.h    \
91         silcthread_i.h  \
92         silclist.h      \
93         silcdlist.h     \
94         silcfileutil.h  \
95         silcutil.h      \
96         silcstrutil.h   \
97         silcutf8.h      \
98         silcstringprep.h \
99         silctypes.h     \
100         silcstream.h    \
101         silcfdstream.h \
102         silcsocketstream.h \
103         silcsocketstream_i.h \
104         silcfsm.h       \
105         silcfsm_i.h     \
106         silctime.h      \
107         silctimer.h     \
108         silctimer_i.h   \
109         silcmime.h      \
110         silcmime_i.h    \
111         silcasync.h     \
112         silcasync_i.h   \
113         silcstack.h     \
114         silcstack_i.h   \
115         silcsnprintf.h  \
116         silcdll.h       \
117         silcenv.h       \
118         silcbase64.h    \
119         silcbitops.h    \
120         silcerrno.h     \
121         silcgetopt.h    \
122         silcregex.h     \
123         silcthreadqueue.h \
124         silcrand.h      \
125         silcglobal.h    \
126         silcruntime.h   \
127         silcdir.h       \
128         silcbufferstream.h \
129         silcxml.h
130
131 SILC_EXTRA_DIST =
132
133 EXTRA_DIST = *.h $(SILC_EXTRA_DIST)
134
135 include $(top_srcdir)/Makefile.defines.in