summaryrefslogtreecommitdiff
path: root/sitestatic
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-07-14 15:04:01 -0600
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-07-14 15:04:01 -0600
commit7ccccb7abbf0f7a393fea8d3334abdbf2025db62 (patch)
treed5a6fedb84d32c7bf7b5b029a0cecca4d167bac4 /sitestatic
parentf6b335b268f5f47e5c48f84f5994f7bdcd8b7e5a (diff)
Add Makefiles to download .js files, and generate .min.js files.
Diffstat (limited to 'sitestatic')
-rw-r--r--sitestatic/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/sitestatic/Makefile b/sitestatic/Makefile
new file mode 100644
index 00000000..e99e3c96
--- /dev/null
+++ b/sitestatic/Makefile
@@ -0,0 +1,24 @@
+include ../common.mk
+
+jquery-ver=1.8.3
+bootstrap-ver=2.1.1
+tablesorter-ver=2.7
+targets = \
+ bootstrap-typeahead \
+ jquery-$(jquery-ver) \
+ jquery.tablesorter-$(tablesorter-ver) \
+ konami
+
+target-files=$(addsuffix .js,$(targets)) $(addsuffix .min.js,$(targets))
+all: $(target-files)
+clean:
+ rm -f -- $(target-files)
+
+bootstrap-typeahead.js: %: $(www)/https/raw.github.com/twitter/bootstrap/v$(bootstrap-ver)/js/%
+ cp $< $@
+jquery-$(jquery-ver).js: %: $(www)/http/code.jquery.com/%
+ cp $< $@
+jquery.tablesorter-$(tablesorter-ver).js: $(www)/https/raw.github.com/Mottie/tablesorter/v$(tablesorter-ver)/js/jquery.tablesorter.js
+ cp $< $@
+konami.js: %: $(www)/https/raw.github.com/snaptortoise/konami-js/master/%
+ cp $< $@