2015-04-07 11:52:58 +03:00
|
|
|
PACKAGE_STRING = "/lib/strutil"
|
2013-01-10 23:44:14 +04:00
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
$(GLIB_CFLAGS) \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
@CHECK_CFLAGS@
|
|
|
|
|
2017-12-03 09:25:22 +03:00
|
|
|
LIBS = @CHECK_LIBS@ \
|
|
|
|
$(top_builddir)/lib/libmc.la
|
|
|
|
|
|
|
|
if ENABLE_MCLIB
|
|
|
|
LIBS += $(GLIB_LIBS)
|
|
|
|
endif
|
2013-01-10 23:44:14 +04:00
|
|
|
|
|
|
|
TESTS = \
|
2013-02-28 16:55:51 +04:00
|
|
|
replace__str_replace_all \
|
2019-02-20 11:31:05 +03:00
|
|
|
parse_integer \
|
2019-02-20 15:39:13 +03:00
|
|
|
str_verscmp \
|
|
|
|
filevercmp
|
2013-01-10 23:44:14 +04:00
|
|
|
|
|
|
|
check_PROGRAMS = $(TESTS)
|
|
|
|
|
|
|
|
replace__str_replace_all_SOURCES = \
|
|
|
|
replace__str_replace_all.c
|
2013-02-28 16:55:51 +04:00
|
|
|
|
|
|
|
parse_integer_SOURCES = \
|
|
|
|
parse_integer.c
|
2019-02-20 11:31:05 +03:00
|
|
|
|
|
|
|
str_verscmp_SOURCES = \
|
|
|
|
str_verscmp.c
|
2019-02-20 15:39:13 +03:00
|
|
|
|
|
|
|
filevercmp_SOURCES = \
|
|
|
|
filevercmp.c
|