mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04: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
14 lines
246 B
Makefile
14 lines
246 B
Makefile
bin_PROGRAMS = ircserver
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir)/src
|
|
|
|
if BUILD_MEMDEBUG
|
|
memdebug_src=../src/core/memdebug.o
|
|
else
|
|
memdebug_src=
|
|
endif
|
|
|
|
ircserver_LDADD = -lglib ../src/core/network.o $(memdebug_src)
|
|
|
|
ircserver_SOURCES = server.c
|