Skip to content

Commit 3ff8448

Browse files
authored
Merge pull request diffblue#1468 from smowton/smowton/fix/unit_test_makefile_dependencies
Fix testing-utils Makefile dependency
2 parents 1a81b3f + 838c8a1 commit 3ff8448

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unit/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: all cprover.dir test
1+
.PHONY: all cprover.dir testing-utils.dir test
22

33
# Source files for test utilities
44
SRC = unit_tests.cpp \
@@ -41,7 +41,7 @@ include ../src/common
4141
cprover.dir:
4242
$(MAKE) $(MAKEARGS) -C ../src
4343

44-
testing-utils/testing-utils$(LIBEXT):
44+
testing-utils.dir:
4545
$(MAKE) $(MAKEARGS) -C testing-utils
4646

4747
CPROVER_LIBS =../src/java_bytecode/java_bytecode$(LIBEXT) \
@@ -70,7 +70,7 @@ TESTS = unit_tests$(EXEEXT) \
7070

7171
CLEANFILES = $(TESTS)
7272

73-
all: cprover.dir
73+
all: cprover.dir testing-utils.dir
7474
$(MAKE) $(MAKEARGS) $(TESTS)
7575

7676
test: all

0 commit comments

Comments
 (0)