aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/real_closed
diff options
context:
space:
mode:
authorCyril Cohen2015-03-25 09:52:24 +0100
committerCyril Cohen2015-03-25 09:52:24 +0100
commit821071c3ba30ad4ad9bb05b928b8bbf8dc2f85a2 (patch)
tree423361d15e4f8b3ffcaf4d25746fcf80e19d5317 /mathcomp/real_closed
parentf3671d37b31f0745a82e6968157bfbb0c0c959e9 (diff)
packaging real_closed
Diffstat (limited to 'mathcomp/real_closed')
l---------mathcomp/real_closed/AUTHORS1
l---------mathcomp/real_closed/CeCILL-B1
l---------mathcomp/real_closed/INSTALL1
-rw-r--r--mathcomp/real_closed/Make13
-rw-r--r--mathcomp/real_closed/Makefile23
l---------mathcomp/real_closed/README1
-rw-r--r--mathcomp/real_closed/all.v1
-rw-r--r--mathcomp/real_closed/opam12
8 files changed, 53 insertions, 0 deletions
diff --git a/mathcomp/real_closed/AUTHORS b/mathcomp/real_closed/AUTHORS
new file mode 120000
index 0000000..b55a98d
--- /dev/null
+++ b/mathcomp/real_closed/AUTHORS
@@ -0,0 +1 @@
+../../etc/AUTHORS \ No newline at end of file
diff --git a/mathcomp/real_closed/CeCILL-B b/mathcomp/real_closed/CeCILL-B
new file mode 120000
index 0000000..83e22fd
--- /dev/null
+++ b/mathcomp/real_closed/CeCILL-B
@@ -0,0 +1 @@
+../../etc/CeCILL-B \ No newline at end of file
diff --git a/mathcomp/real_closed/INSTALL b/mathcomp/real_closed/INSTALL
new file mode 120000
index 0000000..6aa7ec5
--- /dev/null
+++ b/mathcomp/real_closed/INSTALL
@@ -0,0 +1 @@
+../../etc/INSTALL \ No newline at end of file
diff --git a/mathcomp/real_closed/Make b/mathcomp/real_closed/Make
new file mode 100644
index 0000000..08eedc2
--- /dev/null
+++ b/mathcomp/real_closed/Make
@@ -0,0 +1,13 @@
+-R . mathcomp.real_closed
+
+all.v
+bigenough.v
+cauchyreals.v
+complex.v
+ordered_qelim.v
+polyorder.v
+polyrcf.v
+qe_rcf_th.v
+qe_rcf.v
+realalg.v
+mxtens.v \ No newline at end of file
diff --git a/mathcomp/real_closed/Makefile b/mathcomp/real_closed/Makefile
new file mode 100644
index 0000000..d693257
--- /dev/null
+++ b/mathcomp/real_closed/Makefile
@@ -0,0 +1,23 @@
+H=@
+
+ifeq "$(COQBIN)" ""
+COQBIN=$(dir $(shell which coqtop))/
+endif
+
+
+OLD_MAKEFLAGS:=$(MAKEFLAGS)
+MAKEFLAGS+=-B
+
+.DEFAULT_GOAL := all
+
+%:
+ $(H)[ -e Makefile.coq ] || $(COQBIN)/coq_makefile -f Make -o Makefile.coq
+ $(H)MAKEFLAGS=$(OLD_MAKEFLAGS) $(MAKE) --no-print-directory \
+ -f Makefile.coq $*
+
+.PHONY: clean
+clean:
+ $(H)MAKEFLAGS=$(OLD_MAKEFLAGS) $(MAKE) --no-print-directory \
+ -f Makefile.coq clean
+ $(H)rm -f Makefile.coq
+
diff --git a/mathcomp/real_closed/README b/mathcomp/real_closed/README
new file mode 120000
index 0000000..e4e30e8
--- /dev/null
+++ b/mathcomp/real_closed/README
@@ -0,0 +1 @@
+../../etc/README \ No newline at end of file
diff --git a/mathcomp/real_closed/all.v b/mathcomp/real_closed/all.v
index c9de2b6..184ee4a 100644
--- a/mathcomp/real_closed/all.v
+++ b/mathcomp/real_closed/all.v
@@ -7,3 +7,4 @@ Require Export polyrcf.
Require Export qe_rcf_th.
Require Export qe_rcf.
Require Export realalg.
+Require Export mxtens. \ No newline at end of file
diff --git a/mathcomp/real_closed/opam b/mathcomp/real_closed/opam
new file mode 100644
index 0000000..0265da6
--- /dev/null
+++ b/mathcomp/real_closed/opam
@@ -0,0 +1,12 @@
+opam-version: "1.2"
+name: "coq:mathcomp:real_closed"
+version: "1.5"
+maintainer: "Ssreflect <ssreflect@msr-inria.inria.fr>"
+authors: "Ssreflect <ssreflect@msr-inria.inria.fr>"
+homepage: "http://ssr.msr-inria.inria.fr/"
+bug-reports: "ssreflect@msr-inria.inria.fr"
+license: "CeCILL-B"
+build: [ make "-j" "%{jobs}%" ]
+install: [ make "install" ]
+remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/mathcomp/real_closed'" ]
+depends: [ "coq:mathcomp:algebra" { = "1.5" } ]