Add initial Makefile

This commit is contained in:
Tobie Morgan Hitchcock 2022-04-09 13:38:45 +01:00
parent 82b4879d8a
commit cd5ec21164

24
Makefile Normal file
View file

@ -0,0 +1,24 @@
.PHONY: default
default:
@echo "Choose a Makefile target:"
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print " - " $$1}}' | sort
.PHONY: test
test:
cargo test --workspace
.PHONY: clean
clean:
cargo clean --workspace
.PHONY: serve
serve:
cargo run -- -vvv start memory
.PHONY: quick
quick:
cargo build
.PHONY: build
build:
cargo build --release