mirror of
https://github.com/bytedance/g3.git
synced 2026-08-17 12:34:05 +00:00
27 lines
611 B
Makefile
Executable file
27 lines
611 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
PACKAGE_NAME := g3mkcert
|
|
BUILD_PROFILE := release-lto
|
|
|
|
DEB_VERSION ?= $(shell dpkg-parsechangelog -SVersion)
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_clean:
|
|
dh_clean -Xvendor
|
|
|
|
override_dh_auto_clean:
|
|
cargo clean --frozen --offline --release
|
|
|
|
override_dh_auto_build:
|
|
G3_PACKAGE_VERSION=$(DEB_VERSION) \
|
|
cargo build --frozen --offline --profile $(BUILD_PROFILE) \
|
|
--no-default-features \
|
|
--package g3mkcert
|
|
|
|
override_dh_auto_install:
|
|
install -m 755 -D target/$(BUILD_PROFILE)/g3mkcert debian/tmp/usr/bin/g3mkcert
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs $(PACKAGE_NAME)/CHANGELOG
|