summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-12-15 15:00:44 -0800
committerBrion Vibber <brion@pobox.com>2010-12-15 15:00:44 -0800
commitb7f43c8127fb9adb129bb66536d5529a6cac2e8c (patch)
treeaabb784d8cd6287d7f522b51c1c305a9dfd54870 /js
parent2836c4e561d6ded72086735cb59d737b3aa74aa7 (diff)
Makefile to re-generate util.min.js (needs yui-compressor in path)
Diffstat (limited to 'js')
-rw-r--r--js/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/js/Makefile b/js/Makefile
new file mode 100644
index 000000000..00e434714
--- /dev/null
+++ b/js/Makefile
@@ -0,0 +1,11 @@
+.fake: all clean
+
+TARGETS=util.min.js
+
+all: $(TARGETS)
+
+clean:
+ rm -f $(TARGETS)
+
+util.min.js: util.js
+ yui-compressor $< -o $@