]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Makefile to re-generate util.min.js (needs yui-compressor in path)
authorBrion Vibber <brion@pobox.com>
Wed, 15 Dec 2010 23:00:44 +0000 (15:00 -0800)
committerBrion Vibber <brion@pobox.com>
Wed, 15 Dec 2010 23:00:44 +0000 (15:00 -0800)
js/Makefile [new file with mode: 0644]

diff --git a/js/Makefile b/js/Makefile
new file mode 100644 (file)
index 0000000..00e4347
--- /dev/null
@@ -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 $@