Added SILC Thread Queue API
[runtime.git] / lib / silcclient / Makefile.ad
1 #
2 #  Makefile.am
3 #
4 #  Author: Pekka Riikonen <priikone@silcnet.org>
5 #
6 #  Copyright (C) 2000 - 2007 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 noinst_LTLIBRARIES = libsilcclient.la
21
22 libsilcclient_la_SOURCES =              \
23         client.c                        \
24         client_entry.c                  \
25         client_prvmsg.c                 \
26         client_channel.c                \
27         client_connect.c                \
28         client_register.c               \
29         client_notify.c                 \
30         client_attrs.c                  \
31         client_keyagr.c                 \
32         client_listener.c               \
33         client_ftp.c                    \
34         command.c                       \
35         command_reply.c
36
37 #ifdef SILC_DIST_TOOLKIT
38 include_HEADERS=                \
39         client.h                \
40         silcclient.h            \
41         silcclient_entry.h
42
43 SILC_EXTRA_DIST = client_ops_example.c
44 #endif SILC_DIST_TOOLKIT
45
46 EXTRA_DIST = *.h tests $(SILC_EXTRA_DIST)
47
48 include $(top_srcdir)/Makefile.defines.in