diff options
author | Timo Sirainen <cras@irssi.org> | 2000-04-26 08:03:38 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-04-26 08:03:38 +0000 |
commit | c95034c6de1bf72536595e1e3431d8ec64b9880e (patch) | |
tree | e51aa4528257ed8aa9d53640649519f299aaf0c7 /src/fe-text/Makefile.am | |
parent | d01b094151705d433bc43cae9eeb304e6f110a17 (diff) | |
download | irssi-c95034c6de1bf72536595e1e3431d8ec64b9880e.zip |
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/Makefile.am')
-rw-r--r-- | src/fe-text/Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/fe-text/Makefile.am b/src/fe-text/Makefile.am new file mode 100644 index 00000000..c651cf0e --- /dev/null +++ b/src/fe-text/Makefile.am @@ -0,0 +1,46 @@ +bin_PROGRAMS = irssi-text + +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) + +irssi_text_DEPENDENCIES = @COMMON_LIBS@ + +irssi_text_LDADD = \ + @COMMON_LIBS@ \ + $(PROG_LIBS) \ + $(CURSES_LIBS) \ + $(INTLLIBS) \ + $(PERL_LDFLAGS) + +irssi_text_SOURCES = \ + gui-entry.c \ + gui-mainwindows.c \ + gui-printtext.c \ + gui-readline.c \ + gui-special-vars.c \ + gui-statusbar.c \ + gui-statusbar-items.c \ + gui-textwidget.c \ + gui-windows.c \ + irssi.c \ + module-formats.c \ + screen.c + +noinst_HEADERS = \ + gui-entry.h \ + gui-mainwindows.h \ + gui-printtext.h \ + gui-readline.h \ + gui-special-vars.h \ + gui-statusbar.h \ + gui-statusbar-items.h \ + gui-textwidget.h \ + gui-windows.h \ + module-formats.h \ + screen.h |