mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
32 lines
614 B
Makefile
32 lines
614 B
Makefile
include $(top_srcdir)/utils/glib-tap.mk
|
|
|
|
PACKAGE_STRING=irc/core
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/core \
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\" \
|
|
$(GLIB_CFLAGS)
|
|
|
|
test_programs = test-channel-events test-irc
|
|
|
|
CPPFLAGS = \
|
|
-I$(top_srcdir)/src/irc/core \
|
|
$(AM_CPPFLAGS)
|
|
|
|
DEPENDENCIES = \
|
|
../../../src/core/libcore.a \
|
|
../../../src/lib-config/libirssi_config.a
|
|
|
|
LDADD = \
|
|
../../../src/irc/core/libirc_core.a \
|
|
../../../src/core/libcore.a \
|
|
../../../src/lib-config/libirssi_config.a \
|
|
@PROG_LIBS@
|
|
|
|
test_channel_events_SOURCES = \
|
|
test-channel-events.c
|
|
|
|
test_irc_SOURCES = \
|
|
test-irc.c
|