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