repubmark/Makefile

16 lines
132 B
Makefile

CARGO = cargo
all: test fmt clippy
run:
$(CARGO) run
test:
$(CARGO) test
fmt:
$(CARGO) fmt --check
clippy:
$(CARGO) clippy