mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Changed configure.in's functionality so that you could tell what modules you want to build in main irssi binary and it will create automatically the .c files that need to call the module_init()/deinit() functions. Fixed several minor things.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@230 dbcabf3a-b0e7-0310-adc4-f8d773084564
35 lines
711 B
Makefile
35 lines
711 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-irc-server.c \
|
|
fe-ctcp.c \
|
|
fe-events.c \
|
|
fe-events-numeric.c \
|
|
fe-ignore.c \
|
|
fe-netsplit.c \
|
|
fe-query.c \
|
|
fe-common-irc.c \
|
|
irc-window-activity.c \
|
|
irc-hilight-text.c \
|
|
irc-modules.c \
|
|
module-formats.c
|
|
|
|
noinst_HEADERS = \
|
|
completion.h \
|
|
fe-common-irc.h \
|
|
irc-hilight-text.h \
|
|
module-formats.h
|