Skip to content
Draft
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
9 changes: 7 additions & 2 deletions pulse.opam
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@ depends: [
"ocaml"
"fstar" {>= "2023.04.15~dev"}
]
# require modern GNU make (brew package 'make') on mac
depexts: ["coreutils" "make"] {os = "macos" & os-distribution = "homebrew"}
build: [
[make "-j" jobs "ADMIT=1"]
# Makefile requires modern make - build with gmake on mac
["gmake" "-j" jobs "ADMIT=1"] { os = "macos" }
[make "-j" jobs "ADMIT=1"] { os != "macos" }
]
install: [
[make "PREFIX=%{prefix}%" "install"]
["gmake" "PREFIX=%{prefix}%" "install"] { os = "macos" }
[make "PREFIX=%{prefix}%" "install"] { os != "macos" }
]
dev-repo: "git://github.com/FStarLang/pulse"
bug-reports: "https://github.com/FStarLang/pulse/issues"
Expand Down