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