blob: 7a7739500f9f2fc304dc052f51535e9191db99ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
PACKAGE_STRING = "/lib/strutil"
AM_CPPFLAGS = \
$(GLIB_CFLAGS) \
-I$(top_srcdir) \
@CHECK_CFLAGS@
LIBS = @CHECK_LIBS@ \
$(top_builddir)/lib/libmc.la
if ENABLE_MCLIB
LIBS += $(GLIB_LIBS)
endif
TESTS = \
parse_integer \
str_replace_all \
str_verscmp \
filevercmp
check_PROGRAMS = $(TESTS)
parse_integer_SOURCES = \
parse_integer.c
str_replace_all_SOURCES = \
str_replace_all.c
str_verscmp_SOURCES = \
str_verscmp.c
filevercmp_SOURCES = \
filevercmp.c
|