Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
SUBDIRS := mf rlzrs metric incone

all:
cd mf; make;
cd rlzrs; make COQEXTRAFLAGS="-R ../mf mf";
cd metric;make COQEXTRAFLAGS="-R ../mf mf -R ../rlzrs rlzrs";
cd incone;make COQEXTRAFLAGS="-R ../mf mf -R ../rlzrs rlzrs -R ../metric metric"


clean:
cd mf; make clean;
Expand All @@ -15,9 +20,7 @@ uninstall:
cd incone; make uninstall

install:
cd mf;make; make install;
cd rlzrs;make; make install;
cd metric;make; make install;
cd incone;make; make install

.SILENT:
cd mf; make install;
cd rlzrs; make install;
cd metric; make install;
cd incone; make install
8 changes: 4 additions & 4 deletions opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ install: [
]
remove: [make "uninstall"]
depends: [
"coq" {(>= "8.9")}
"coq-mathcomp-ssreflect" { (>= "1.7") }
"coq-mathcomp-algebra" {>= "1.7"}
"coq-coquelicot" {(>= "3.0")}
"coq" {(>= "8.9" & < "8.10~")}
"coq-mathcomp-ssreflect" { (>= "1.7" & < "1.8~") }
"coq-mathcomp-algebra" {>= "1.7" & < "1.8~"}
"coq-coquelicot" {(>= "3.0" & < "3.1~")}
]
tags: [
]