From: Brion Vibber Date: Wed, 22 Dec 2010 23:04:50 +0000 (-0800) Subject: Makefile to compress LinkPreview's js X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8babcc2ad21f70745ce261476ffe74b42603419a;p=quix0rs-gnu-social.git Makefile to compress LinkPreview's js --- diff --git a/plugins/LinkPreview/Makefile b/plugins/LinkPreview/Makefile new file mode 100644 index 0000000000..6c8a03e94b --- /dev/null +++ b/plugins/LinkPreview/Makefile @@ -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 $@