surrealpatch/Makefile
2023-11-20 11:49:35 +00:00

58 lines
1.1 KiB
Makefile

.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: check-deps
check-deps:
@cargo make --help >/dev/null 2>&1 || { \
echo >&2 "ERROR: Install cargo-make to use make tasks."; \
echo >&2 "$ cargo install --no-default-features --force --locked cargo-make"; \
echo >&2 "More info: https://sagiegurari.github.io/cargo-make"; \
echo >&2; \
exit 1; \
}
.PHONY: setup
setup: check-deps
cargo make setup
.PHONY: docs
docs: check-deps
cargo make docs
.PHONY: test
test: check-deps
cargo make test
.PHONY: check
check: check-deps
cargo make check
.PHONY: check-wasm
check-wasm: check-deps
cargo make check-wasm
.PHONY: clean
clean: check-deps
cargo make clean
.PHONY: bench
bench: check-deps
cargo make bench
.PHONY: serve
serve: check-deps
cargo make serve
.PHONY: sql
sql: check-deps
cargo make sql
.PHONY: quick
quick: check-deps
cargo make quick
.PHONY: build
build: check-deps
cargo make build