monolith/Makefile

17 lines
199 B
Makefile
Raw Normal View History

2019-09-22 18:57:50 +02:00
.PHONY: all build install run test lint
all: test build
build:
@cargo build
install:
@cargo install --force --path .
test:
@cargo test
@cargo fmt --all -- --check
lint:
@cargo fmt --all --