mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
93d6032151
- GNOME version isn't anymore build here so you don't need all that GTK and GNOME crap to compile irssi-text. - Some fixes to compile with -ansi -pedantic git-svn-id: http://svn.irssi.org/repos/irssi/trunk@200 dbcabf3a-b0e7-0310-adc4-f8d773084564
23 lines
357 B
Makefile
23 lines
357 B
Makefile
bin_PROGRAMS = irssi-bot
|
|
|
|
INCLUDES = $(GLIB_CFLAGS)
|
|
|
|
INCLUDES = \
|
|
$(GLIB_CFLAGS) \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/core/ \
|
|
-I$(top_srcdir)/src/irc/core/
|
|
|
|
irssi_bot_DEPENDENCIES = @COMMON_NOUI_LIBS@
|
|
|
|
irssi_bot_LDADD = \
|
|
@COMMON_NOUI_LIBS@ \
|
|
$(PROG_LIBS) \
|
|
$(PERL_LDFLAGS)
|
|
|
|
irssi_bot_SOURCES = \
|
|
irssi.c
|
|
|
|
noinst_HEADERS = \
|
|
module.h
|