1.PHONY: test build build-wasi2jsonnet-cpp:3 git clone https://github.com/google/jsonnet jsonnet-cpp45.ONESHELL:6test-examples: jsonnet-cpp7 export JSONNET_BIN="$(PWD)/target/release/jrsonnet"8 export EXAMPLES_DIR="$(PWD)/jsonnet-cpp/examples/"9 cd ./jsonnet-cpp/examples/10 ./check.sh1112.ONESHELL:13test-tests: jsonnet-cpp14 export JSONNET_BIN="$(PWD)/target/release/jrsonnet --trace-format=go --thread-stack-size=96"15 cd ./jsonnet-cpp/test_suite/16 ./run_tests.sh1718test:19 cargo test20build:21 RUSTFLAGS="-Zmutable-noalias=yes -C link-arg=-s" cargo build --release -p jrsonnet22build-wasi:23 cd ./bindings/ && cargo build --release -p jsonnet --target wasm32-wasi