Skip to content

Commit

Permalink
Merge pull request diffblue#1468 from smowton/smowton/fix/unit_test_m…
Browse files Browse the repository at this point in the history
…akefile_dependencies

Fix testing-utils Makefile dependency
  • Loading branch information
smowton authored Oct 12, 2017
2 parents 1a81b3f + 838c8a1 commit 3ff8448
Showing 1 changed file with 3 additions and 3 deletions.
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 @@ -41,7 +41,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 @@ -70,7 +70,7 @@ TESTS = unit_tests$(EXEEXT) \

CLEANFILES = $(TESTS)

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

test: all
Expand Down

0 comments on commit 3ff8448

Please sign in to comment.