Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions unit/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: all cprover.dir test
.PHONY: all cprover.dir testing-utils.dir test

# Source files for test utilities
SRC = unit_tests.cpp \
Expand Down Expand Up @@ -40,7 +40,7 @@ include ../src/common
cprover.dir:
$(MAKE) $(MAKEARGS) -C ../src

testing-utils/testing-utils$(LIBEXT):
testing-utils.dir:
$(MAKE) $(MAKEARGS) -C testing-utils

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

CLEANFILES = $(TESTS)

all: cprover.dir
all: cprover.dir testing-utils.dir
$(MAKE) $(MAKEARGS) $(TESTS)

test: all
Expand Down