mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
commands. /RUN -> /SCRIPT LOAD, /PERLFLUSH -> /SCRIPT FLUSH, /PERL -> /SCRIPT EXEC. Added /SCRIPT UNLOAD, /SCRIPT LIST. Lots of cleanups. filename_complete() has extra argument for "default directory" which is searched if no path is given when completing. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1680 dbcabf3a-b0e7-0310-adc4-f8d773084564
58 lines
1.2 KiB
Makefile
58 lines
1.2 KiB
Makefile
bin_PROGRAMS = irssi
|
|
|
|
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/ \
|
|
-I$(top_srcdir)/src/fe-common/irc/ \
|
|
$(CURSES_INCLUDEDIR) \
|
|
-DLOCALEDIR=\""$(datadir)/locale"\"
|
|
|
|
irssi_DEPENDENCIES = \
|
|
@COMMON_LIBS@ \
|
|
@PERL_LINK_LIBS@ \
|
|
@PERL_FE_LINK_LIBS@
|
|
|
|
irssi_LDADD = \
|
|
@COMMON_LIBS@ \
|
|
@PERL_LINK_LIBS@ \
|
|
@PERL_FE_LINK_LIBS@ \
|
|
@PERL_LINK_FLAGS@ \
|
|
$(PROG_LIBS) \
|
|
$(CURSES_LIBS)
|
|
|
|
irssi_SOURCES = \
|
|
gui-entry.c \
|
|
gui-expandos.c \
|
|
gui-printtext.c \
|
|
gui-readline.c \
|
|
gui-windows.c \
|
|
lastlog.c \
|
|
mainwindows.c \
|
|
mainwindow-activity.c \
|
|
mainwindows-save.c \
|
|
screen.c \
|
|
statusbar.c \
|
|
statusbar-items.c \
|
|
textbuffer.c \
|
|
textbuffer-commands.c \
|
|
textbuffer-reformat.c \
|
|
textbuffer-view.c \
|
|
irssi.c \
|
|
module-formats.c
|
|
|
|
noinst_HEADERS = \
|
|
gui-entry.h \
|
|
gui-printtext.h \
|
|
gui-readline.h \
|
|
gui-windows.h \
|
|
mainwindows.h \
|
|
statusbar.h \
|
|
screen.h \
|
|
textbuffer.h \
|
|
textbuffer-view.h \
|
|
textbuffer-reformat.h \
|
|
module.h \
|
|
module-formats.h
|