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