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