ligo/makefile

30 lines
974 B
Makefile
Raw Normal View History

# Use install-deps instead of 'install' because usually 'make install' adds a
# binary to the system path and we don't want to confuse users
install-deps:
# Install ligo/tezos specific system-level dependencies
sudo scripts/install_native_dependencies.sh
2019-06-01 09:32:23 +04:00
build-deps:
# Create opam dev switch locally for use with Ligo, add merlin/etc
2019-06-09 06:04:59 +04:00
if [ -n "`opam switch show | grep -P ".+/ligo"`" ];
then exit; else scripts/setup_dev_switch.sh;
fi
# Set up the local ligo opam repository so that it can be built
if [ -n "`opam repo list --safe | grep -P "ligo-opam-repository"`" ];
then exit; else scripts/setup_ligo_opam_repository.sh;
fi
# Install OCaml build dependencies for Ligo
scripts/install_ligo_with_dependencies.sh
2019-06-01 09:32:23 +04:00
build: build-deps
# Build Ligo for local dev use
scripts/build_ligo_local.sh
2019-06-01 09:32:23 +04:00
2019-06-09 05:27:30 +04:00
.ONESHELL:
2019-06-01 09:32:23 +04:00
test: build
eval $(opam env)
run_outcome=`dune build @ligo-test`
if [ ! -n $run_outcome ]
then echo "Run 'eval $(opam env)' and this command will work.";
fi