diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-02-14 20:33:12 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-02-14 20:33:12 +0000 |
commit | 58d8c5c85d06aa2449201108ec0cb5e9a8f2d281 (patch) | |
tree | 0ca1430dab9b8241c4726d146e0eeaa7c08d4c1f /Makefile | |
download | acf-jquery-mobile-58d8c5c85d06aa2449201108ec0cb5e9a8f2d281.tar.bz2 acf-jquery-mobile-58d8c5c85d06aa2449201108ec0cb5e9a8f2d281.tar.xz |
Initial commit of jquerymobile 1.4.1 library
Files downloaded from http://jquerymobile.com/resources/download/jquery.mobile-1.4.1.zip
Renamed minimized files to remove version info
jquery.mobile.css = jquery.mobile.icons.css + jquery.mobile.theme.css + jquery.mobile.structure.css
file is split so you can roll your own theme
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..60001dd --- /dev/null +++ b/Makefile @@ -0,0 +1,50 @@ +APP_NAME=jquery +PACKAGE=acf-$(APP_NAME) +VERSION=0.3.0 + +APP_DIST=\ + *.js\ + +STATIC_DIST=\ + *.css\ + images\ + +EXTRA_DIST=README Makefile config.mk + +DISTFILES=$(APP_DIST) $(STATIC_DIST) $(EXTRA_DIST) + +TAR=tar + +P=$(PACKAGE)-$(VERSION) +tarball=$(P).tar.bz2 +install_dir=$(DESTDIR)/$(wwwdir)/js +static_dir=$(DESTDIR)/$(staticdir)/jqmobile + +all: +clean: + rm -rf $(tarball) $(P) + +dist: $(tarball) + +install: + mkdir -p "$(install_dir)" + cp -a $(APP_DIST) "$(install_dir)" + mkdir -p "$(static_dir)" + cp -a $(STATIC_DIST) "$(static_dir)" + +$(tarball): $(DISTFILES) + rm -rf $(P) + mkdir -p $(P) + cp -a $(DISTFILES) $(P) + $(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 |