aboutsummaryrefslogblamecommitdiffhomepage
path: root/ci/Makefile
blob: 9f18c6099b82ce719f5aabddfd2a637ae9763e69 (plain) (tree)
1
                                                                                        

















                                                                





                                       
all: build build-examples check-fmt check-clippy check-tests check-examples run-examples

build:
	cargo build

build-examples:
	cargo build --examples

check-fmt:
	cargo fmt --check

check-clippy:
	cargo clippy -- -Dwarnings -Aclippy::new_without_default

check-tests:
	cargo test

check-examples:
	cargo test --examples

run-examples:
	cargo run --example fib
	cargo run --example add
	cargo run --example tiny_vm
	cargo run --example tiny_vm jit