summaryrefslogtreecommitdiff
path: root/src/core/Makefile.am
blob: ae932aa625958df00154b2cb549e68d701a4c8da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
noinst_LIBRARIES = libcore.a

INCLUDES = \
	$(GLIB_CFLAGS) \
	-DSYSCONFDIR=\""$(sysconfdir)"\" \
	-DMODULEDIR=\""$(libdir)/irssi/modules"\" \
	-I$(top_srcdir)/src \
	-I$(top_srcdir)/src/core

if BUILD_MEMDEBUG
memdebug_src=memdebug.c
else
memdebug_src=
endif

libcore_a_SOURCES = \
	args.c \
	channels.c \
	channels-setup.c \
	commands.c \
	chat-commands.c \
	chat-protocols.c \
	chatnets.c \
	core.c \
	expandos.c \
        ignore.c \
        levels.c \
	line-split.c \
	log.c \
	log-away.c \
	masks.c \
        $(memdebug_src) \
	misc.c \
	modules.c \
	modules-load.c \
	net-disconnect.c \
	net-nonblock.c \
	net-sendbuffer.c \
	network.c \
	nicklist.c \
	nickmatch-cache.c \
	pidwait.c \
	queries.c \
	rawlog.c \
	servers.c \
	servers-reconnect.c \
	servers-redirect.c \
	servers-setup.c \
	settings.c \
	signals.c \
	special-vars.c \
	write-buffer.c

structure_headers = \
	channel-rec.h \
	channel-setup-rec.h \
	chatnet-rec.h \
	query-rec.h \
	server-rec.h \
	server-setup-rec.h \
	server-connect-rec.h \
	window-item-rec.h

noinst_HEADERS = \
	args.h \
	channels.h \
	channels-setup.h \
	commands.h \
	chat-protocols.h \
	chatnets.h \
	core.h \
	expandos.h \
        ignore.h \
        levels.h \
	line-split.h \
	log.h \
	masks.h \
        memdebug.h \
	misc.h \
	module.h \
	modules.h \
	modules-load.h \
	net-disconnect.h \
	net-nonblock.h \
	net-sendbuffer.h \
	network.h \
	nick-rec.h \
	nicklist.h \
	nickmatch-cache.h \
	pidwait.h \
	queries.h \
	rawlog.h \
	servers.h \
	servers-reconnect.h \
	servers-redirect.h \
	servers-setup.h \
	settings.h \
	signals.h \
	special-vars.h \
	window-item-def.h \
	write-buffer.h \
	$(structure_headers)

EXTRA_DIST = \
	memdebug.c