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