Sun May 13 16:54:35 CEST 2007 Jochen Eisinger <coffee@silcnet.org>
[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         recode.c \
42         servers.c \
43         servers-reconnect.c \
44         servers-setup.c \
45         session.c \
46         settings.c \
47         signals.c \
48         special-vars.c \
49         write-buffer.c
50
51 structure_headers = \
52         channel-rec.h \
53         channel-setup-rec.h \
54         chatnet-rec.h \
55         query-rec.h \
56         server-rec.h \
57         server-setup-rec.h \
58         server-connect-rec.h \
59         window-item-rec.h
60
61 noinst_HEADERS = \
62         args.h \
63         channels.h \
64         channels-setup.h \
65         commands.h \
66         chat-protocols.h \
67         chatnets.h \
68         core.h \
69         expandos.h \
70         ignore.h \
71         levels.h \
72         line-split.h \
73         log.h \
74         masks.h \
75         misc.h \
76         module.h \
77         modules.h \
78         modules-load.h \
79         net-disconnect.h \
80         net-nonblock.h \
81         net-sendbuffer.h \
82         network.h \
83         nick-rec.h \
84         nicklist.h \
85         nickmatch-cache.h \
86         pidwait.h \
87         queries.h \
88         rawlog.h \
89         recode.h \
90         servers.h \
91         servers-reconnect.h \
92         servers-setup.h \
93         session.h \
94         settings.h \
95         signals.h \
96         special-vars.h \
97         window-item-def.h \
98         write-buffer.h \
99         $(structure_headers)