2000-06-02 01:58:52 +00:00
|
|
|
bin_PROGRAMS = irssi
|
2000-04-26 08:03:38 +00:00
|
|
|
|
|
|
|
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/ \
|
2000-08-13 23:15:05 +00:00
|
|
|
$(CURSES_INCLUDEDIR) \
|
|
|
|
-DLOCALEDIR=\""$(datadir)/locale"\"
|
2000-04-26 08:03:38 +00:00
|
|
|
|
2001-07-29 09:17:53 +00:00
|
|
|
irssi_DEPENDENCIES = \
|
|
|
|
@COMMON_LIBS@ \
|
|
|
|
@PERL_LINK_LIBS@ \
|
|
|
|
@PERL_FE_LINK_LIBS@
|
2000-04-26 08:03:38 +00:00
|
|
|
|
2000-06-02 01:58:52 +00:00
|
|
|
irssi_LDADD = \
|
2000-04-26 08:03:38 +00:00
|
|
|
@COMMON_LIBS@ \
|
2001-02-17 11:05:29 +00:00
|
|
|
@PERL_LINK_LIBS@ \
|
2001-07-29 09:17:53 +00:00
|
|
|
@PERL_FE_LINK_LIBS@ \
|
2001-10-28 11:30:26 +00:00
|
|
|
@PERL_LINK_FLAGS@
|
|
|
|
|
|
|
|
tparm_sources = \
|
|
|
|
tparm.c
|
|
|
|
|
|
|
|
terminfo_sources = \
|
|
|
|
term-terminfo.c \
|
|
|
|
terminfo-core.c
|
|
|
|
|
|
|
|
curses_sources = \
|
|
|
|
term-curses.c
|
|
|
|
|
|
|
|
if NEED_TPARM
|
|
|
|
use_tparm_sources = $(tparm_sources)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if USE_CURSES
|
|
|
|
use_term_sources = $(curses_sources)
|
|
|
|
else
|
|
|
|
use_term_sources = $(terminfo_sources)
|
|
|
|
endif
|
2000-04-26 08:03:38 +00:00
|
|
|
|
2000-06-02 01:58:52 +00:00
|
|
|
irssi_SOURCES = \
|
2000-04-26 08:03:38 +00:00
|
|
|
gui-entry.c \
|
2000-12-05 00:53:04 +00:00
|
|
|
gui-expandos.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
gui-printtext.c \
|
|
|
|
gui-readline.c \
|
|
|
|
gui-windows.c \
|
2001-02-19 06:23:04 +00:00
|
|
|
lastlog.c \
|
2000-08-12 16:40:39 +00:00
|
|
|
mainwindows.c \
|
|
|
|
mainwindow-activity.c \
|
2001-08-07 12:41:10 +00:00
|
|
|
mainwindows-layout.c \
|
2000-08-12 16:40:39 +00:00
|
|
|
statusbar.c \
|
2001-10-13 16:11:13 +00:00
|
|
|
statusbar-config.c \
|
2000-08-12 16:40:39 +00:00
|
|
|
statusbar-items.c \
|
2001-10-28 11:30:26 +00:00
|
|
|
term.c \
|
|
|
|
$(use_tparm_sources) \
|
|
|
|
$(use_term_sources) \
|
2001-04-14 22:24:56 +00:00
|
|
|
textbuffer.c \
|
|
|
|
textbuffer-commands.c \
|
2001-07-15 00:39:48 +00:00
|
|
|
textbuffer-reformat.c \
|
2001-04-14 22:24:56 +00:00
|
|
|
textbuffer-view.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
irssi.c \
|
2001-04-14 22:24:56 +00:00
|
|
|
module-formats.c
|
2000-04-26 08:03:38 +00:00
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
gui-entry.h \
|
|
|
|
gui-printtext.h \
|
|
|
|
gui-readline.h \
|
|
|
|
gui-windows.h \
|
2000-08-12 16:40:39 +00:00
|
|
|
mainwindows.h \
|
2001-10-13 16:11:13 +00:00
|
|
|
statusbar.h \
|
|
|
|
statusbar-config.h \
|
|
|
|
statusbar-items.h \
|
2001-10-28 11:30:26 +00:00
|
|
|
term.h \
|
|
|
|
terminfo-core.h \
|
2001-04-14 22:24:56 +00:00
|
|
|
textbuffer.h \
|
|
|
|
textbuffer-view.h \
|
2001-07-16 16:10:12 +00:00
|
|
|
textbuffer-reformat.h \
|
2000-06-04 16:01:19 +00:00
|
|
|
module.h \
|
|
|
|
module-formats.h
|
2001-10-28 11:30:26 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
$(tparm_sources) \
|
|
|
|
$(terminfo_sources) \
|
|
|
|
$(curses_sources)
|