mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
c0004807d4
Added testcase for testinh path encoding. Signed-off-by: Slava Zanko <slavazanko@gmail.com>
36 lines
667 B
Makefile
36 lines
667 B
Makefile
AM_CFLAGS = -I$(top_srcdir)/lib/vfs $(GLIB_CFLAGS) -I$(top_srcdir) @CHECK_CFLAGS@ \
|
|
-DTEST_SHARE_DIR=\"$(abs_srcdir)\" -z muldefs
|
|
|
|
AM_LDFLAGS = -z muldefs
|
|
|
|
LIBS=@CHECK_LIBS@ \
|
|
$(top_builddir)/lib/libmc.la
|
|
|
|
TESTS = \
|
|
current_dir \
|
|
vfs_prefix_to_class \
|
|
get_vfs_class \
|
|
vfs_split \
|
|
vfs_path_string_convert \
|
|
vfs_s_get_path_mangle
|
|
|
|
check_PROGRAMS = $(TESTS)
|
|
|
|
current_dir_SOURCES = \
|
|
current_dir.c
|
|
|
|
get_vfs_class_SOURCES = \
|
|
get_vfs_class.c
|
|
|
|
vfs_split_SOURCES = \
|
|
vfs_split.c
|
|
|
|
vfs_prefix_to_class_SOURCES = \
|
|
vfs_prefix_to_class.c
|
|
|
|
vfs_path_string_convert_SOURCES = \
|
|
vfs_path_string_convert.c
|
|
|
|
vfs_s_get_path_mangle_SOURCES = \
|
|
vfs_s_get_path_mangle.c
|