monolith/Makefile
2021-02-23 23:35:35 -10:00

30 lines
363 B
Makefile

# Makefile for monolith
all: build
.PHONY: all
build:
@cargo build --locked
.PHONY: build
test: build
@cargo test --locked
@cargo fmt --all -- --check
.PHONY: test
lint:
@cargo fmt --all --
.PHONY: lint
install:
@cargo install --force --locked --path .
.PHONY: install
uninstall:
@cargo uninstall
.PHONY: uninstall
clean:
@cargo clean
.PHONY: clean