summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThomas Bauereiss2020-03-27 18:06:26 +0000
committerThomas Bauereiss2020-04-10 13:22:11 +0100
commit550db27f8c27e03ecc4defc804c8f360af64fbd6 (patch)
treedfd9f8145b98934cd5d695c8d733c3caf830bace /lib
parent0207a2ce56250a1d277871dc2ed546aab5255e3a (diff)
Update path for newer versions of BBV Coq library
Diffstat (limited to 'lib')
-rw-r--r--lib/coq/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/coq/Makefile b/lib/coq/Makefile
index d16191cb..806b0ff0 100644
--- a/lib/coq/Makefile
+++ b/lib/coq/Makefile
@@ -1,10 +1,10 @@
-BBV_DIR?=../../../bbv
+BBV_DIR?=../../../bbv/src/bbv
CORESRC=Sail2_prompt_monad.v Sail2_prompt.v Sail2_impl_base.v Sail2_instr_kinds.v Sail2_operators_bitlists.v Sail2_operators_mwords.v Sail2_operators.v Sail2_values.v Sail2_state_monad.v Sail2_state.v Sail2_state_lifting.v Sail2_string.v Sail2_real.v
PROOFSRC=Sail2_values_lemmas.v Sail2_state_monad_lemmas.v Sail2_state_lemmas.v Hoare.v
SRC=$(CORESRC) $(PROOFSRC)
-COQ_LIBS = -R . Sail -R "$(BBV_DIR)/theories" bbv
+COQ_LIBS = -R . Sail -R "$(BBV_DIR)" bbv
TARGETS=$(SRC:.v=.vo)