irssi/tests/irc/core/Makefile.am
ailin-nemui ef124d7378 Merge pull request #1268 from ailin-nemui/nostdinc
configure automake with nostdinc

(cherry picked from commit 95f131da2d741f4ad13c2c045253dc2b80b03f40)
2021-04-08 16:24:52 +02:00

33 lines
635 B
Makefile

include $(top_srcdir)/utils/glib-tap.mk
PACKAGE_STRING=irc/core
AM_CPPFLAGS = \
-I$(top_builddir) \
-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