From 6a08fa716b6cf248e3770c9d111c2be2c3955fe3 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Wed, 30 Dec 2009 09:44:56 +0000 Subject: Created new acf-jquery package with the jquery libraries moved from acf-core 0.9.0 --- Makefile | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bcbffd2 --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +APP_NAME=jquery +PACKAGE=acf-$(APP_NAME) +VERSION=0.1.0 + +APP_DIST=\ + *.js\ + + +EXTRA_DIST=README Makefile config.mk + +DISTFILES=$(APP_DIST) $(EXTRA_DIST) + +TAR=tar + +P=$(PACKAGE)-$(VERSION) +tarball=$(P).tar.bz2 +install_dir=$(DESTDIR)/$(wwwdir)/js + +all: +clean: + rm -rf $(tarball) $(P) + +dist: $(tarball) + +install: + mkdir -p "$(install_dir)" + cp -a $(APP_DIST) "$(install_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 -- cgit v1.2.3