Skip to content
Snippets Groups Projects
Commit cad70685 authored by Jacques-Henri Jourdan's avatar Jacques-Henri Jourdan
Browse files

Merge branch 'master' of gitlab.mpi-sws.org:FP/LambdaRust-coq

parents 6487f788 44116b68
No related branches found
No related tags found
No related merge requests found
# Process flags
ifeq ($(Y), 1)
YFLAG=-y
endif
# Determine Coq version
COQ_VERSION=$(shell coqc --version | egrep -o 'version 8.[0-9]' | egrep -o '8.[0-9]')
COQ_MAKEFILE_FLAGS ?=
......@@ -28,8 +33,13 @@ Makefile.coq: _CoqProject Makefile
# Install build-dependencies
build-dep:
cat opam.pins | build/opam-pins.sh
opam pin add coq-lambda-rust "$$(pwd)#HEAD" -k git -y -n
opam install coq-lambda-rust --deps-only -y
opam upgrade $(YFLAG)
opam pin add coq-lambda-rust "$$(pwd)#HEAD" -k git -n -y
opam install coq-lambda-rust --deps-only $(YFLAG)
# some fiels that do *not* need to be forwarded to Makefile.coq
Makefile: ;
_CoqProject: ;
# Phony targets (i.e. targets that should be run no matter the timestamps of the involved files)
phony: ;
......
......@@ -27,7 +27,7 @@ done
# Install/upgrade build-dependencies
echo
opam upgrade -y
make build-dep
make build-dep Y=1
# done
echo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment