diff -r deac632e477c -r d1b294812560 src/tizen/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/tizen/Makefile Wed Jul 31 19:48:00 2013 +0200 @@ -0,0 +1,46 @@ +## +## OTPWCalc - One time password challenge response calculator client +## Copyright © 2013 Michael Schloh von Bennewitz +## +## OTPWCalc is free software: you can redistribute it and/or modify +## it under the terms of the European Union Public Licence, either +## version 1.1 of the license, or (at your option) any later version. +## +## OTPWCalc is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty +## of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See +## the European Union Public License for more details. +## +## You should have received a copy of the European Union Public +## Licence along with OTPWCalc. If not, please refer to +## . +## +## This file is part of project OTWPCalc, a one time password challenge +## response calculator client and is found at http://otpwcalc.europalab.com/ +## +## Makefile: Autoconf Makefile configuration +## + +# Paths +distdir = ../../dist + +# Files +WIDGET = otpwcalc-tizen-$(VERSION).wgt + +# Vars +VERSION = 0.7.5 + +# Progs +PROGWGT = unknown +PROGECHO = echo + +# Logic +all: + @$(PROGECHO) 'Nothing to do... To roll a zipball please make the dist target.' + +dist: Makefile + @if [ -e $(distdir)/$(WIDGET) ]; \ + then $(PROGECHO) '$(distdir)/$(WIDGET) already exists, aborting.'; \ + else \ + $(PROGWGT) -r9 $(distdir)/$(WIDGET) . -x Makefile -x test/\* -x otpwcalc.appcache -x jquery.plugins/\* -x img/\*.svg -x img/\*.xcf; \ + fi