aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEugene Sandulenko2017-01-23 20:52:52 +0100
committerEugene Sandulenko2017-01-23 20:52:52 +0100
commit320ed53f31daaf1429da5db8529f72e0809a1048 (patch)
treea1104bd086d5d4992cad9107b7775d293d1afc65 /test
parent311bb2f1b6e7bb2f0bf6c64f6e30719c3ba5c199 (diff)
downloadscummvm-rg350-320ed53f31daaf1429da5db8529f72e0809a1048.tar.gz
scummvm-rg350-320ed53f31daaf1429da5db8529f72e0809a1048.tar.bz2
scummvm-rg350-320ed53f31daaf1429da5db8529f72e0809a1048.zip
TESTS: Fix linking target in Makefile
Diffstat (limited to 'test')
-rw-r--r--test/module.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/module.mk b/test/module.mk
index 607eacc1ea..75c96d81ba 100644
--- a/test/module.mk
+++ b/test/module.mk
@@ -44,7 +44,7 @@ endif
test: test/runner
./test/runner
test/runner: test/runner.cpp $(TEST_LIBS)
- $(QUIET_LINK)$(CXX) $(TEST_CXXFLAGS) $(CPPFLAGS) $(TEST_CFLAGS) -o $@ $+ $(TEST_LDFLAGS)
+ $(QUIET_LINK)$(LD) $(TEST_CXXFLAGS) $(CPPFLAGS) $(TEST_CFLAGS) -o $@ $+ $(TEST_LDFLAGS)
test/runner.cpp: $(TESTS)
@mkdir -p test
$(srcdir)/test/cxxtest/cxxtestgen.py $(TEST_FLAGS) -o $@ $+