Skip to content

Commit 838c8a1

Browse files
committed
Fix testing-utils Makefile dependency
This previously led to it being built on first use, but not rebuilt on subsequent change.
1 parent 1614c2c commit 838c8a1

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 \
@@ -40,7 +40,7 @@ include ../src/common
4040
cprover.dir:
4141
$(MAKE) $(MAKEARGS) -C ../src
4242

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

4646
CPROVER_LIBS =../src/java_bytecode/java_bytecode$(LIBEXT) \
@@ -69,7 +69,7 @@ TESTS = unit_tests$(EXEEXT) \
6969

7070
CLEANFILES = $(TESTS)
7171

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

7575
test: all

0 commit comments

Comments
 (0)