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