summaryrefslogtreecommitdiff
path: root/src/irc/core/Makefile.am
blob: fa4ca3f9054d79b80fd12be838f14a994067dd2f (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
noinst_LIBRARIES = libirc_core.a

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

libirc_core_a_SOURCES = \
	bans.c \
        ctcp.c \
        channels-query.c \
        channel-events.c \
        channel-rejoin.c \
        irc.c \
        irc-core.c \
        irc-channels.c \
        irc-channels-setup.c \
	irc-chatnets.c \
        irc-commands.c \
        irc-expandos.c \
        irc-masks.c \
        irc-nicklist.c \
        irc-queries.c \
        irc-servers.c \
        irc-servers-reconnect.c \
        irc-servers-setup.c \
        irc-session.c \
        lag.c \
        massjoin.c \
        modes.c \
        mode-lists.c \
        netsplit.c \
        servers-idle.c \
        servers-redirect.c

pkginc_irc_coredir=$(pkgincludedir)/src/irc/core
pkginc_irc_core_HEADERS = \
	bans.h \
        ctcp.h \
        channel-rejoin.h \
        irc.h \
        irc-channels.h \
	irc-chatnets.h \
	irc-commands.h \
        irc-masks.h \
        irc-nicklist.h \
        irc-queries.h \
        irc-servers.h \
        irc-servers-setup.h \
        modes.h \
        mode-lists.h \
	module.h \
        netsplit.h \
        servers-idle.h \
        servers-redirect.h