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