File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ ifeq (3.82,$(firstword $(sort $(MAKE_VERSION) 3.82)))
22 # stuff that requires make-3.82 or higher
33 undefine COQPATH
44endif
5- ifdef out
6- PREFIX=${out}
7- INSTALLOPT="--prefix=${PREFIX} --libdir ${OCAMLFIND_DESTDIR}"
5+ ifeq ($(out ) ,)
6+ else
7+ PREFIX=$(out)
8+ INSTALLOPT=--prefix=${PREFIX} --libdir ${OCAMLFIND_DESTDIR}
89endif
910
1011all : rocq extraction_plugin extraction_ocaml_ffi plugin bootstrap
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ build: [
1313 [make]
1414]
1515install: [
16- [make "-j%{jobs}%" install]
16+ [make "-j%{jobs}%" " install" ]
1717]
1818depends: [
1919 "rocq-core" { >= "9.0" }
@@ -22,3 +22,9 @@ depends: [
2222 "rocq-metarocq-erasure-plugin" { = "1.4+9.0" }
2323 "malfunction" { >= "0.7" }
2424]
25+ tags: [
26+ "keyword:extraction"
27+ "category:Miscellaneous/Rocq Extensions"
28+ "date:2025-04-23"
29+ "logpath:VerifiedExtraction"
30+ ]
You can’t perform that action at this time.
0 commit comments