blob: ec7634617bffdf75efb596615af627f56caeac37 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
PACKAGE_STRING = "/lib"
SUBDIRS = . mcconfig search strutil vfs widget
AM_CPPFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) @CHECK_CFLAGS@
AM_LDFLAGS = @TESTS_LDFLAGS@
LIBS = @CHECK_LIBS@ \
$(top_builddir)/lib/libmc.la
if ENABLE_MCLIB
LIBS += $(GLIB_LIBS)
endif
EXTRA_DIST = utilunix__my_system-common.c
TESTS = \
library_independ \
mc_build_filename \
name_quote \
serialize \
utilunix__mc_pstream_get_string \
utilunix__my_system_fork_fail \
utilunix__my_system_fork_child_shell \
utilunix__my_system_fork_child \
x_basename
if CHARSET
TESTS += mc_realpath
endif
check_PROGRAMS = $(TESTS)
library_independ_SOURCES = \
library_independ.c
mc_build_filename_SOURCES = \
mc_build_filename.c
mc_realpath_SOURCES = \
mc_realpath.c
name_quote_SOURCES = \
name_quote.c
serialize_SOURCES = \
serialize.c
utilunix__mc_pstream_get_string_SOURCES = \
utilunix__mc_pstream_get_string.c
utilunix__my_system_fork_fail_SOURCES = \
utilunix__my_system-fork_fail.c
utilunix__my_system_fork_child_shell_SOURCES = \
utilunix__my_system-fork_child_shell.c
utilunix__my_system_fork_child_SOURCES = \
utilunix__my_system-fork_child.c
x_basename_SOURCES = \
x_basename.c
|