vaultwarden/Makefile

28 lines
520 B
Makefile
Raw Normal View History

2020-02-22 16:58:35 +01:00
BUILD_VERSION ?= 1.13.1
DB ?= postgresql
DEBIAN_FRONTEND ?= noninteractive
LANG ?= C.UTF-8
TZ ?= UTC
SRC := src
.PHONY: all
all: build
.PHONY: build
build: build-src build-bin
.PHONY: build-src
build-src:
mkdir -p $(SRC); \
2020-02-22 17:01:51 +01:00
curl -sSL https://github.com/dani-garcia/bitwarden_rs/archive/$${BUILD_VERSION##v}.tar.gz | tar xz -C $(SRC) --strip-components=1
2020-02-22 16:58:35 +01:00
.PHONY: build-bin
build-bin:
rustup set profile minimal && \
cd $(SRC) && \
cargo build -j 8 --features $(DB) --release
.PHONY: clean
clean:
rm -rf $(SRC)