mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
33 lines
648 B
Makefile
33 lines
648 B
Makefile
|
SUBDIRS = dcc flood notifylist
|
||
|
|
||
|
noinst_LTLIBRARIES = libfe_common_irc.la
|
||
|
|
||
|
INCLUDES = \
|
||
|
$(GLIB_CFLAGS) \
|
||
|
-I$(top_srcdir)/src \
|
||
|
-I$(top_srcdir)/src/core/ \
|
||
|
-I$(top_srcdir)/src/irc/core/ \
|
||
|
-I$(top_srcdir)/src/fe-common/core/ \
|
||
|
-DHELPDIR=\""$(datadir)/irssi/help"\" \
|
||
|
-DSYSCONFDIR=\""$(sysconfdir)"\"
|
||
|
|
||
|
libfe_common_irc_la_SOURCES = \
|
||
|
completion.c \
|
||
|
fe-channels.c \
|
||
|
fe-irc-commands.c \
|
||
|
fe-ctcp.c \
|
||
|
fe-events.c \
|
||
|
fe-events-numeric.c \
|
||
|
fe-ignore.c \
|
||
|
fe-query.c \
|
||
|
fe-common-irc.c \
|
||
|
irc-nick-hilight.c \
|
||
|
irc-hilight-text.c \
|
||
|
module-formats.c
|
||
|
|
||
|
noinst_HEADERS = \
|
||
|
completion.h \
|
||
|
fe-common-irc.h \
|
||
|
irc-hilight-text.h \
|
||
|
module-formats.h
|