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