aboutsummaryrefslogtreecommitdiff
path: root/mathcomp
diff options
context:
space:
mode:
authorCyril Cohen2019-04-04 16:17:51 +0200
committerGitHub2019-04-04 16:17:51 +0200
commit7b44a99573fc10e7b55eec22d630719ad01ee7c0 (patch)
tree8e15d5c77c39a275715209e4f94e9b4473e58204 /mathcomp
parent1dd093cf647e3abdba1da557175e433bdcfaf84a (diff)
parent2b40140bb9c9e2620214fd65144af1c0fef4083a (diff)
Merge pull request #321 from math-comp/remove-8.6
remove support for Coq 8.6
Diffstat (limited to 'mathcomp')
-rw-r--r--mathcomp/Makefile9
-rw-r--r--mathcomp/ssreflect/Makefile8
-rw-r--r--mathcomp/ssreflect/Makefile.detect-coq-version8
3 files changed, 0 insertions, 25 deletions
diff --git a/mathcomp/Makefile b/mathcomp/Makefile
index c631c7b..f5d495a 100644
--- a/mathcomp/Makefile
+++ b/mathcomp/Makefile
@@ -6,12 +6,3 @@ COQMAKEOPTIONS=--no-print-directory
# Main Makefile
include Makefile.common
-
-# --------------------------------------------------------------------
-# this sets variables COQVERSION and MLLIBEXTRA
-# assuming PLUGIN is set to the directory which contains the plugins
-# and SSR is set to the directory of the ssreflect package
-PLUGIN=../plugin
-SSR=ssreflect
-include ssreflect/Makefile.detect-coq-version
-COQMAKEFILEOPTIONS=$(MLLIBEXTRA)
diff --git a/mathcomp/ssreflect/Makefile b/mathcomp/ssreflect/Makefile
index 76b8c2c..9d78a7c 100644
--- a/mathcomp/ssreflect/Makefile
+++ b/mathcomp/ssreflect/Makefile
@@ -6,11 +6,3 @@ COQMAKEOPTIONS=--no-print-directory
# Main Makefile
include ../Makefile.common
-
-# --------------------------------------------------------------------
-# this sets variables COQVERSION and MLLIBEXTRA
-# assuming PLUGIN is set to the directory which contains the plugins
-PLUGIN=../../plugin/
-SSR=.
-include Makefile.detect-coq-version
-COQMAKEFILEOPTIONS=$(MLLIBEXTRA)
diff --git a/mathcomp/ssreflect/Makefile.detect-coq-version b/mathcomp/ssreflect/Makefile.detect-coq-version
deleted file mode 100644
index d2e8dce..0000000
--- a/mathcomp/ssreflect/Makefile.detect-coq-version
+++ /dev/null
@@ -1,8 +0,0 @@
-MLLIBEXTRA=$(shell \
- if [ $(COQVV) = "8.6" ];\
- then cp $(PLUGIN)/v$(COQVV)/ssreflect_plugin.mlpack .;\
- cp $(PLUGIN)/v$(COQVV)/ssreflect.ml4 .;\
- cp $(PLUGIN)/v$(COQVV)/ssrbool.v $(SSR)/;\
- cp $(PLUGIN)/v$(COQVV)/ssrfun.v $(SSR)/;\
- cp $(PLUGIN)/v$(COQVV)/ssreflect.v $(SSR)/;\
- echo "ssreflect_plugin.mlpack ssreflect.ml4"; fi)