mc/tests/lib/strutil/Makefile.am
Andrew Borodin 3ae7ad4449 tests: fix DSO link error in case of --enable-mclib.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
2018-02-04 11:30:22 +03:00

27 lines
420 B
Makefile

PACKAGE_STRING = "/lib/strutil"
AM_CPPFLAGS = \
$(GLIB_CFLAGS) \
-I$(top_srcdir) \
-I$(top_srcdir)/lib/search \
@CHECK_CFLAGS@
LIBS = @CHECK_LIBS@ \
$(top_builddir)/lib/libmc.la
if ENABLE_MCLIB
LIBS += $(GLIB_LIBS)
endif
TESTS = \
replace__str_replace_all \
parse_integer
check_PROGRAMS = $(TESTS)
replace__str_replace_all_SOURCES = \
replace__str_replace_all.c
parse_integer_SOURCES = \
parse_integer.c