Fri, 26 Apr 2013 19:10:52 +0200
Implement touch gestures including left and right history swipes,
relocate help pages, update app cache manifest, and bump version
pending forthcoming release.
michael@0 | 1 | ## |
michael@0 | 2 | ## OTPWCalc - One time password challenge response calculator client |
michael@0 | 3 | ## Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> |
michael@0 | 4 | ## |
michael@0 | 5 | ## OTPWCalc is free software: you can redistribute it and/or modify |
michael@0 | 6 | ## it under the terms of the European Union Public Licence, either |
michael@0 | 7 | ## version 1.1 of the license, or (at your option) any later version. |
michael@0 | 8 | ## |
michael@0 | 9 | ## OTPWCalc is distributed in the hope that it will be useful, |
michael@0 | 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty |
michael@0 | 11 | ## of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
michael@0 | 12 | ## the European Union Public License for more details. |
michael@0 | 13 | ## |
michael@0 | 14 | ## You should have received a copy of the European Union Public |
michael@0 | 15 | ## Licence along with OTPWCalc. If not, please refer to |
michael@0 | 16 | ## <http://joinup.ec.europa.eu/software/page/eupl/>. |
michael@0 | 17 | ## |
michael@0 | 18 | ## This file is part of project OTWPCalc, a one time password challenge |
michael@0 | 19 | ## response calculator client and is found at http://otpwcalc.europalab.com/ |
michael@0 | 20 | ## |
michael@0 | 21 | ## Makefile: Autoconf Makefile configuration |
michael@0 | 22 | ## |
michael@0 | 23 | |
michael@0 | 24 | # Paths |
michael@0 | 25 | distdir = ../../dist |
michael@0 | 26 | |
michael@0 | 27 | # Files |
michael@0 | 28 | ZIPBALL = otpwcalc-foxos-$(VERSION).zip |
michael@0 | 29 | |
michael@0 | 30 | # Vars |
michael@4 | 31 | VERSION = 0.7.2 |
michael@0 | 32 | |
michael@0 | 33 | # Progs |
michael@0 | 34 | PROGZIP = zip |
michael@0 | 35 | PROGECHO = echo |
michael@0 | 36 | |
michael@0 | 37 | # Logic |
michael@0 | 38 | all: |
michael@0 | 39 | @$(PROGECHO) 'Nothing to do... To roll a zipball please make the dist target.' |
michael@0 | 40 | |
michael@0 | 41 | dist: Makefile |
michael@0 | 42 | @if [ -e $(distdir)/$(ZIPBALL) ]; \ |
michael@0 | 43 | then $(PROGECHO) '$(distdir)/$(ZIPBALL) already exists, aborting.'; \ |
michael@0 | 44 | else \ |
michael@4 | 45 | $(PROGZIP) -r9 $(distdir)/$(ZIPBALL) . -x Makefile -x test/\* -x otpwcalc.appcache -x jquery.plugins/\*-x img/keonmobile.png -x img/\*.svg -x img/\*.xcf; \ |
michael@0 | 46 | fi |