Skip to content

use dune in the Makefile and remove ocamlbuild #1665

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
Jul 26, 2023
Merged
Changes from 1 commit
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
10 changes: 4 additions & 6 deletions interpreter/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,10 @@ opam-release/%:
wget https://github.com/WebAssembly/spec/archive/opam-$*.zip
cp wasm.opam opam
echo 'url {' >> opam
echo ' src: "https://github.com/WebAssembly/spec/archive/opam-@VERSION.zip"' >> opam
echo ' checksum: "md5=@MD5"' >> opam
echo '}' >> opam
sed -i ".tmp" s/@VERSION/$*/g opam
sed -i ".tmp" s/@MD5/`md5 -q opam-$*.zip`/g opam
rm opam.tmp opam-$*.zip
echo " src: \"https://github.com/WebAssembly/spec/archive/opam-$*.zip\"" >> opam
echo " checksum: \"md5=`md5 -q opam-$*.zip`\"" >> opam
echo "}" >> opam
rm opam-$*.zip
@echo Created file ./opam, submit to github opam-repository/packages/wasm/wasm.$*/opam

# Miscellaneous targets
Expand Down