mc/tests/lib/strutil/Makefile.am
Andrew Borodin ccf82ada12 Add functions to transform string to unsigned integer:
* (xstrtoumax): from gnulib.
 * (parse_integer): from coreutils (dd.c).

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
2013-07-05 09:09:03 +04:00

21 lines
341 B
Makefile

AM_CPPFLAGS = \
$(GLIB_CFLAGS) \
-I$(top_srcdir) \
-I$(top_srcdir)/lib/search \
@CHECK_CFLAGS@
LIBS = @CHECK_LIBS@ $(top_builddir)/lib/libmc.la
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