Advertisement
pqatsi

Make Example for S6102B XDuos dev.

Feb 27th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Defaults
  2. FILENAME=update
  3. SIGNED=${FILENAME}_signed
  4. DIR=release
  5.  
  6. zip:
  7.     cd ${DIR} && 7z -mmt=on -tzip a ../${FILENAME}.zip *
  8.  
  9. sign: zip
  10.     java -classpath ~/bin/testsign.jar testsign ${FILENAME}.zip ${SIGNED}.zip
  11.  
  12. .PHONY: clean all
  13.  
  14. clean:
  15.     rm -fv "*${DIR}*.zip update.zip"
  16.  
  17. all: clean zip sign
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement