From b7f43c8127fb9adb129bb66536d5529a6cac2e8c Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 15 Dec 2010 15:00:44 -0800 Subject: [PATCH] Makefile to re-generate util.min.js (needs yui-compressor in path) --- js/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 js/Makefile diff --git a/js/Makefile b/js/Makefile new file mode 100644 index 0000000000..00e4347141 --- /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 $@ -- 2.39.5