Skip to content

Fix testing-utils Makefile dependency #1468

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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