aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1f0f3644ea3cee24fa08369454f07d0caf42666e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.PHONY: doc all release shell run1 run2 run3

all:
	clear; cargo build --all-features

release:
	nix-build --arg release true

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