You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monolith/Makefile

37 lines
443 B
Makefile

# Makefile for monolith
all: build
.PHONY: all
build:
@cargo build --locked
.PHONY: build
clean:
@cargo clean
.PHONY: clean
install:
@cargo install --force --locked --path .
.PHONY: install
lint:
@cargo fmt --all --
.PHONY: lint
lint_check:
@cargo fmt --all -- --check
.PHONY: lint_check
test: build
@cargo test --locked
.PHONY: test
uninstall:
@cargo uninstall
.PHONY: uninstall
4 years ago
update-lock-file:
@cargo update
4 years ago
.PHONY: clean