summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2013-10-03 20:04:28 +0000
committerTed Trask <ttrask01@yahoo.com>2013-10-03 20:04:28 +0000
commit99465254bbc496c0647c9cec1738db160406139f (patch)
treea4e60b8a9e57e6f2bac767cde82ffe2e2178c04a /Makefile
parent4da987794209602b4271449adc39be8aa7cdc52f (diff)
downloadacf-jquery-99465254bbc496c0647c9cec1738db160406139f.tar.bz2
acf-jquery-99465254bbc496c0647c9cec1738db160406139f.tar.xz
Add tablesorter theme files to skins/static/tablesorter
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
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)