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