garage/Makefile

28 lines
649 B
Makefile
Raw Normal View History

.PHONY: doc all release shell run1 run2 run3
2021-09-28 08:13:14 +00:00
all:
2022-09-07 16:16:01 +00:00
clear; cargo build
2020-06-30 15:18:42 +00:00
release:
nix-build --attr pkgs.amd64.release --no-build-output
2021-10-04 16:27:57 +00:00
shell:
nix-shell
# ----
run1:
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config1.toml server
run1rel:
RUST_LOG=garage=debug ./target/release/garage -c tmp/config1.toml server
run2:
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config2.toml server
run2rel:
RUST_LOG=garage=debug ./target/release/garage -c tmp/config2.toml server
run3:
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config3.toml server
run3rel:
RUST_LOG=garage=debug ./target/release/garage -c tmp/config3.toml server