mirror of
https://github.com/Y2Z/monolith
synced 2024-11-05 06:01:10 +00:00
22 lines
273 B
Makefile
22 lines
273 B
Makefile
#!/usr/bin/make -f
|
|
|
|
all: test
|
|
.PHONY: all
|
|
|
|
build:
|
|
@cargo build --locked
|
|
.PHONY: build
|
|
|
|
install:
|
|
@cargo install --force --locked --path .
|
|
.PHONY: install
|
|
|
|
test: build
|
|
@cargo test --locked
|
|
@cargo fmt --all -- --check
|
|
.PHONY: test
|
|
|
|
lint:
|
|
@cargo fmt --all --
|
|
.PHONY: lint
|