zerokit/Makefile

16 lines
199 B
Makefile

.PHONY: all test clean
all: .pre-build
@cargo make build
.pre-build:
ifndef $(cargo make --help)
@cargo install --force cargo-make
endif
test: .pre-build
@cargo make test
clean:
@cargo clean