]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Makefile to compress LinkPreview's js
authorBrion Vibber <brion@pobox.com>
Wed, 22 Dec 2010 23:04:50 +0000 (15:04 -0800)
committerBrion Vibber <brion@pobox.com>
Wed, 22 Dec 2010 23:04:50 +0000 (15:04 -0800)
plugins/LinkPreview/Makefile [new file with mode: 0644]

diff --git a/plugins/LinkPreview/Makefile b/plugins/LinkPreview/Makefile
new file mode 100644 (file)
index 0000000..6c8a03e
--- /dev/null
@@ -0,0 +1,11 @@
+.fake: all clean
+
+TARGETS=linkpreview.min.js
+
+all: $(TARGETS)
+
+clean:
+       rm -f $(TARGETS)
+
+linkpreview.min.js: linkpreview.js
+       yui-compressor $< -o $@