src/tizen/Makefile

Wed, 31 Jul 2013 19:48:00 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Jul 2013 19:48:00 +0200
changeset 14
d1b294812560
permissions
-rw-r--r--

Introduce port to the Tizen OS.

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

mercurial