From: Brion Vibber Date: Wed, 15 Dec 2010 23:00:44 +0000 (-0800) Subject: Makefile to re-generate util.min.js (needs yui-compressor in path) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b7f43c8127fb9adb129bb66536d5529a6cac2e8c;p=quix0rs-gnu-social.git Makefile to re-generate util.min.js (needs yui-compressor in path) --- 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 $@