mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
extern int command_hide_output which can be used to check if /^ was used. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2839 dbcabf3a-b0e7-0310-adc4-f8d773084564
63 lines
1.1 KiB
Makefile
63 lines
1.1 KiB
Makefile
noinst_LIBRARIES = libfe_common_core.a
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \
|
|
$(GLIB_CFLAGS) \
|
|
-DHELPDIR=\""$(datadir)/irssi/help"\" \
|
|
-DTHEMESDIR=\""$(datadir)/irssi/themes"\"
|
|
|
|
libfe_common_core_a_SOURCES = \
|
|
autorun.c \
|
|
chat-completion.c \
|
|
command-history.c \
|
|
completion.c \
|
|
fe-channels.c \
|
|
fe-common-core.c \
|
|
fe-core-commands.c \
|
|
fe-exec.c \
|
|
fe-expandos.c \
|
|
fe-help.c \
|
|
fe-ignore.c \
|
|
fe-ignore-messages.c \
|
|
fe-log.c \
|
|
fe-messages.c \
|
|
fe-modules.c \
|
|
fe-queries.c \
|
|
fe-server.c \
|
|
fe-settings.c \
|
|
formats.c \
|
|
hilight-text.c \
|
|
keyboard.c \
|
|
module-formats.c \
|
|
printtext.c \
|
|
themes.c \
|
|
translation.c \
|
|
window-activity.c \
|
|
window-commands.c \
|
|
window-items.c \
|
|
windows-layout.c \
|
|
fe-windows.c
|
|
|
|
noinst_HEADERS = \
|
|
autorun.h \
|
|
command-history.h \
|
|
chat-completion.h \
|
|
completion.h \
|
|
fe-channels.h \
|
|
fe-common-core.h \
|
|
fe-core-commands.h \
|
|
fe-exec.h \
|
|
fe-messages.h \
|
|
fe-queries.h \
|
|
formats.h \
|
|
hilight-text.h \
|
|
keyboard.h \
|
|
module-formats.h \
|
|
module.h \
|
|
printtext.h \
|
|
themes.h \
|
|
translation.h \
|
|
window-activity.h \
|
|
window-items.h \
|
|
windows-layout.h \
|
|
fe-windows.h
|