diff options
author | Brion Vibber <brion@pobox.com> | 2010-12-15 15:00:44 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-12-15 15:00:44 -0800 |
commit | b7f43c8127fb9adb129bb66536d5529a6cac2e8c (patch) | |
tree | aabb784d8cd6287d7f522b51c1c305a9dfd54870 | |
parent | 2836c4e561d6ded72086735cb59d737b3aa74aa7 (diff) |
Makefile to re-generate util.min.js (needs yui-compressor in path)
-rw-r--r-- | js/Makefile | 11 |
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 $@ |