From 99465254bbc496c0647c9cec1738db160406139f Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 3 Oct 2013 20:04:28 +0000 Subject: Add tablesorter theme files to skins/static/tablesorter --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5806534..71ab270 100644 --- a/Makefile +++ b/Makefile @@ -5,16 +5,19 @@ VERSION=0.2.0 APP_DIST=\ *.js\ +STATIC_DIST=\ + tablesorter/*\ EXTRA_DIST=README Makefile config.mk -DISTFILES=$(APP_DIST) $(EXTRA_DIST) +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)/tablesorter all: clean: @@ -25,6 +28,8 @@ 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) -- cgit v1.2.3