Skip to content

Commit

Permalink
Merge pull request #25 from rdoeffinger/release_makefile
Browse files Browse the repository at this point in the history
Add Makefile with commands to make a binary release zip file.
  • Loading branch information
annejan committed Apr 14, 2015
2 parents 491fa0f + e4e718b commit fb4e6e6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions release-zip.mak
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit fb4e6e6

Please sign in to comment.