summaryrefslogtreecommitdiffstats
path: root/release-zip.mak
blob: eb4be4359cc61238940cb7ee5169da7309666095 (plain)
1
2
3
4
5
6
7
8
9
10
# Note: this assumes Qt with release and debug config was used

VERSION=v0.1-testing

qtpass-${VERSION}-win.zip: qtpass.exe LICENSE README.md
	7z a -mx=9 $@ $^

qtpass.exe: release/qtpass.exe
	strip $^
	if [ -n "$(SIGNKEY)" ] ; then osslsigncode sign -ts http://www.startssl.com/timestamp -certs $(SIGNKEY).crt -key $(SIGNKEY).key -in $^ -out $@ ; chmod +x $@ ; else cp $^ $@ ; fi