Merged with Irssi CVS.
[silc.git] / apps / irssi / src / core / Makefile.am
1 noinst_LIBRARIES = libcore.a
2
3 include $(top_srcdir)/Makefile.defines.in
4
5 INCLUDES = \
6         -I$(top_srcdir)/src \
7         -I$(top_srcdir)/src/core \
8         $(GLIB_CFLAGS) \
9         -DSYSCONFDIR=\""$(silc_etcdir)"\" \
10         -DMODULEDIR=\""$(silc_modulesdir)"\"
11
12 libcore_a_SOURCES = \
13         args.c \
14         channels.c \
15         channels-setup.c \
16         commands.c \
17         chat-commands.c \
18         chat-protocols.c \
19         chatnets.c \
20         core.c \
21         expandos.c \
22         ignore.c \
23         levels.c \
24         line-split.c \
25         log.c \
26         log-away.c \
27         masks.c \
28         misc.c \
29         modules.c \
30         modules-load.c \
31         net-disconnect.c \
32         net-nonblock.c \
33         net-sendbuffer.c \
34         network.c \
35         network-openssl.c \
36         nicklist.c \
37         nickmatch-cache.c \
38         pidwait.c \
39         queries.c \
40         rawlog.c \
41         servers.c \
42         servers-reconnect.c \
43         servers-setup.c \
44         session.c \
45         settings.c \
46         signals.c \
47         special-vars.c \
48         write-buffer.c
49
50 structure_headers = \
51         channel-rec.h \
52         channel-setup-rec.h \
53         chatnet-rec.h \
54         query-rec.h \
55         server-rec.h \
56         server-setup-rec.h \
57         server-connect-rec.h \
58         window-item-rec.h
59
60 noinst_HEADERS = \
61         args.h \
62         channels.h \
63         channels-setup.h \
64         commands.h \
65         chat-protocols.h \
66         chatnets.h \
67         core.h \
68         expandos.h \
69         ignore.h \
70         levels.h \
71         line-split.h \
72         log.h \
73         masks.h \
74         misc.h \
75         module.h \
76         modules.h \
77         modules-load.h \
78         net-disconnect.h \
79         net-nonblock.h \
80         net-sendbuffer.h \
81         network.h \
82         nick-rec.h \
83         nicklist.h \
84         nickmatch-cache.h \
85         pidwait.h \
86         queries.h \
87         rawlog.h \
88         servers.h \
89         servers-reconnect.h \
90         servers-setup.h \
91         session.h \
92         settings.h \
93         signals.h \
94         special-vars.h \
95         window-item-def.h \
96         write-buffer.h \
97         $(structure_headers)