Skip to content

Commit 58b6b92

Browse files
committed
Fix makefile
1 parent 387b258 commit 58b6b92

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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
44
endif
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}
89
endif
910

1011
all: rocq extraction_plugin extraction_ocaml_ffi plugin bootstrap

rocq-verified-extraction.opam

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ build: [
1313
[make]
1414
]
1515
install: [
16-
[make "-j%{jobs}%" install]
16+
[make "-j%{jobs}%" "install"]
1717
]
1818
depends: [
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+
]

0 commit comments

Comments
 (0)