diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-02-17 15:03:27 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-02-17 15:03:27 +0000 |
commit | ac9bbe488a9db26dac0b97daf5d28c71c8285ed8 (patch) | |
tree | 5f9ad74aad5f84548f6b59fbb8c86ea60951d383 /Makefile | |
download | acf-skins-jqmobile-ac9bbe488a9db26dac0b97daf5d28c71c8285ed8.tar.bz2 acf-skins-jqmobile-ac9bbe488a9db26dac0b97daf5d28c71c8285ed8.tar.xz |
Initial commit of jQuery Mobile skin based on work from vkrishn
Includes custom theme created by upgrading jquery.mobile.theme-1.2.0.css to 1.4.0 compatibility.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bd0751c --- /dev/null +++ b/Makefile @@ -0,0 +1,59 @@ +APP_NAME=skins-jquery +PACKAGE=acf-$(APP_NAME) +VERSION=0.0.1 + +WWW_DIST=\ + images/* \ + jqmobile.css \ + jqmobile.js \ + template-html.lsp \ + template-welcome-read-html.lsp \ + themes/jqmobile-skin.min.css \ + themes/jquery.mobile.icons.min.css \ + themes/images/ajax-loader.gif \ + themes/images/icons-png/* \ + +EXTRA_DIST=README Makefile config.mk + +DISTFILES=$(WWW_DIST) $(EXTRA_DIST) + +TAR=tar + +P=$(PACKAGE)-$(VERSION) +tarball=$(P).tar.bz2 +install_dir=$(DESTDIR)/$(wwwdir)/skins/jqmobile + +all: +clean: + rm -rf $(tarball) $(P) + +dist: $(tarball) + +install: + mkdir -p $(install_dir) + for i in $(WWW_DIST); do\ + dest=`dirname "$(install_dir)/$$i"`;\ + mkdir -p "$$dest";\ + cp "$$i" "$$dest";\ + done + +$(tarball): $(DISTFILES) + rm -rf $(P) + mkdir -p $(P) + for i in $(DISTFILES); do\ + dest=`dirname "$(P)/$$i"`;\ + mkdir -p "$$dest";\ + cp "$$i" "$$dest";\ + done + $(TAR) -jcf $@ $(P) + rm -rf $(P) + +# target that creates a tar package, unpacks is and install from package +dist-install: $(tarball) + $(TAR) -jxf $(tarball) + $(MAKE) -C $(P) install DESTDIR=$(DESTDIR) + rm -rf $(P) + +include config.mk + +.PHONY: all clean dist install dist-install |