aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorZufu Liu <unknown>2023-12-12 13:33:48 +1100
committerZufu Liu <unknown>2023-12-12 13:33:48 +1100
commit3dd48b8dcadabe394be028a5e210dec9ff617511 (patch)
tree656db2b31f1782be1722a33f2e804fbf24bed5f0
parent50f053ff0f1d1a2b45a20e65f25a21a2a10c1bc4 (diff)
downloadscintilla-mirror-3dd48b8dcadabe394be028a5e210dec9ff617511.tar.gz
Slight speed up by allowing unitTest.o to compile in parallel with others.
-rw-r--r--test/unit/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/makefile b/test/unit/makefile
index 1fc67139e..9830ee794 100644
--- a/test/unit/makefile
+++ b/test/unit/makefile
@@ -84,5 +84,5 @@ clean:
%.o: %.cxx
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
-$(EXE): $(TESTOBJ) $(TESTEDOBJ) unitTest.cxx
+$(EXE): $(TESTOBJ) $(TESTEDOBJ) unitTest.o
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LINKFLAGS) $^ -o $@