aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 6110585672793baf787e9c80aca7ab7fd302e6d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
BIN=target/release/garage
DOCKER=lxpz/garage_amd64

all:
	#cargo fmt || true
	#RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build
	cargo build

$(BIN):
	#RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build --release
	cargo build --release

$(BIN).stripped: $(BIN)
	cp $^ $@
	strip $@

docker: $(BIN).stripped
	docker build -t $(DOCKER):$(TAG) .
	docker push $(DOCKER):$(TAG)
	docker tag $(DOCKER):$(TAG) $(DOCKER):latest
	docker push $(DOCKER):latest