vaultwarden/Makefile

29 lines
717 B
Makefile
Raw Normal View History

2020-06-04 14:57:22 +02:00
export BUILD_VERSION ?= 1.14.2
2020-02-22 17:04:30 +01:00
export DEBIAN_FRONTEND ?= noninteractive
export LANG ?= C.UTF-8
export TZ ?= UTC
2020-02-22 16:58:35 +01:00
DB ?= postgresql
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:04:30 +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:
2020-06-04 01:39:34 +02:00
RUSTFLAGS="-C link-arg=-s" rustup set profile minimal && \
2020-02-22 16:58:35 +01:00
cd $(SRC) && \
2020-06-04 01:38:06 +02:00
RUSTFLAGS="-C link-arg=-s" rustup target add x86_64-unknown-linux-musl && \
2020-06-04 01:39:34 +02:00
RUSTFLAGS="-C link-arg=-s" BWRS_VERSION="$${BUILD_VERSION##v}" cargo build -j 8 --features $(DB) --release
2020-02-22 16:58:35 +01:00
.PHONY: clean
clean:
rm -rf $(SRC)