mirror of
https://github.com/MidnightCommander/mc
synced 2025-02-13 05:44:24 +03:00
42499480bd
In tests/lib/mcconfig/Makefile.am tests/lib/vfs/Makefile.am tests/src/filemanager/Makefile.am AM_LDFLAGS = -Wl,-z,muldefs is used, but on cygwin the linker does not accept the "-z" option and AM_LDFLAGS = -Wl,--allow-multiple-definition is required instead. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
20 lines
352 B
Makefile
20 lines
352 B
Makefile
|
|
AM_CPPFLAGS = -DWORKDIR=\"$(abs_builddir)\"
|
|
AM_CFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) @CHECK_CFLAGS@
|
|
|
|
AM_LDFLAGS = @TESTS_LDFLAGS@
|
|
|
|
LIBS=@CHECK_LIBS@ $(top_builddir)/lib/libmc.la
|
|
|
|
TESTS = \
|
|
config_string \
|
|
user_configs_path
|
|
|
|
check_PROGRAMS = $(TESTS)
|
|
|
|
config_string_SOURCES = \
|
|
config_string.c
|
|
|
|
user_configs_path_SOURCES = \
|
|
user_configs_path.c
|