garage/Makefile
Alex 0eb5baea1a
Some checks are pending
continuous-integration/drone/push Build is running
Improve bootstraping: do it regularly; persist peer list
2021-04-05 19:55:53 +02:00

21 lines
457 B
Makefile

BIN=target/release/garage
DOCKER=lxpz/garage_amd64
all:
clear; cargo build
$(BIN):
RUSTFLAGS="-C link-arg=-fuse-ld=lld -C target-cpu=x86-64 -C target-feature=+sse2" cargo build --release --no-default-features
$(BIN).stripped: $(BIN)
cp $^ $@
strip $@
docker: $(BIN).stripped
docker pull archlinux:latest
docker build -t $(DOCKER):$(TAG) .
docker push $(DOCKER):$(TAG)
docker tag $(DOCKER):$(TAG) $(DOCKER):latest
docker push $(DOCKER):latest