diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-04-24 20:38:49 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-04-30 22:10:33 +0200 |
commit | c8cadd8bec1350b28c0042a18055eb2c7db096c6 (patch) | |
tree | 9521cbcd824b068e3069493fe152c841ab066f6b /Makefile | |
parent | 37ed577a6b8de8a43fb67f30e7a0c7460a4c04a9 (diff) |
[pkg] two-stage build for windows to allow signed uninstaller
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,6 +1,6 @@ ######################################################################### # Multiplatform build and packaging recipes for BitmaskVPN -# (c) LEAP Encryption Access Project, 2019 +# (c) LEAP Encryption Access Project, 2019-2020 ######################################################################### .PHONY: all get build build_bitmaskd icon locales generate_locales clean @@ -150,8 +150,8 @@ TGZ_NAME = bitmask-vpn_${VERSION}-src TGZ_PATH = $(shell pwd)/build/${TGZ_NAME} tgz: @mkdir -p $(TGZ_PATH) - @git archive HEAD | tar -x -C $(TGZ_PATH) - @cd build/ && tar cvzf bitmask-vpn_$(VERSION).tgz ${TGZ_NAME} + git archive HEAD | tar -x -C $(TGZ_PATH) + @cd build/ && tar czf bitmask-vpn_$(VERSION).tgz ${TGZ_NAME} @rm -rf $(TGZ_PATH) gen_pkg_win: @@ -209,8 +209,11 @@ package_snap: package_deb: @make -C build/${PROVIDER} pkg_deb -package_win: - @make -C build/${PROVIDER} pkg_win +package_win_stage_1: + @make -C build/${PROVIDER} pkg_win_stage_1 + +package_win_stage_2: + @make -C build/${PROVIDER} pkg_win_stage_2 package_osx: @make -C build/${PROVIDER} pkg_osx |