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

VERSION=v1.0

qtpass-${VERSION}-gpg4win.zip: qtpass.exe qtpass.ini LICENSE README.md password-store gpg4win key_management.bat
	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