File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1+ pre-all::
2+ if command -v coqc > /dev/null && (coqc --version | grep -q '8.18\|8.19\|8.20') ; then \
3+ for f in $(shell grep "From Corelib" $$(find . -name "*.v") | cut -d: -f1) ; do \
4+ sed -i.bak $${f} -e 's/From Corelib/From Coq/' ; \
5+ sed -i.bak $${f} -e 's/PosDef/PArith/' ; \
6+ $(RM) $${f}.bak ; \
7+ done ; \
8+ fi
Original file line number Diff line number Diff line change 11(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
22(* Distributed under the terms of CeCILL-B. *)
3- From Coq Require Import RelationClasses.
3+ From Corelib Require Import RelationClasses.
44From mathcomp Require Import ssreflect ssrfun ssrbool eqtype ssrnat seq path.
55From mathcomp Require Import div choice fintype tuple finfun bigop prime finset.
66From mathcomp Require Import order.
You can’t perform that action at this time.
0 commit comments