2022-07-08 11:30:26 +00:00
|
|
|
.PHONY: doc all release shell run1 run2 run3
|
2021-09-28 08:13:14 +00:00
|
|
|
|
2020-04-05 21:33:42 +00:00
|
|
|
all:
|
2022-09-07 16:16:01 +00:00
|
|
|
clear; cargo build
|
2020-06-30 15:18:42 +00:00
|
|
|
|
2021-05-28 11:58:47 +00:00
|
|
|
release:
|
2023-01-26 14:04:32 +00:00
|
|
|
nix-build --attr pkgs.amd64.release --no-build-output
|
2021-10-04 16:27:57 +00:00
|
|
|
|
|
|
|
shell:
|
|
|
|
nix-shell
|
2022-07-08 11:30:26 +00:00
|
|
|
|
|
|
|
# ----
|
|
|
|
|
|
|
|
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
|