Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9f63f73

Browse files
committed
remove cryptominisat
1 parent aa3aaf4 commit 9f63f73

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,13 @@ REG_TESTS_OK := $(wildcard $(REG_TESTS_DIR)/ok/*)
8080
REG_TESTS_DIFF := $(REG_TESTS_OK:$(REG_TESTS_DIR)/ok/%=$(REG_TESTS_DIR)/output/%.diff)
8181

8282
thirdparty/cryptominisat/build/cryptominisat4_simple:
83-
test -d thirdparty/cryptominisat/build || mkdir thirdparty/cryptominisat/build
84-
cd thirdparty/cryptominisat/build && cmake .. && make -j4
83+
cd thirdparty
84+
test -d cryptominisat || git clone https://github.com/msoos/cryptominisat.git
85+
test -d cryptominisat/build || mkdir -p cryptominisat/build
86+
cd cryptominisat/build && cmake .. && make -j4
8587

8688
tests: test
87-
test: dist $(REG_TESTS_OK) thirdparty/cryptominisat/build/cryptominisat4_simple
89+
test: dist $(REG_TESTS_OK)
8890
tests/bin/run-tests.sh
8991

9092

0 commit comments

Comments
 (0)