diff options
author | Brion Vibber <brion@pobox.com> | 2010-12-22 15:04:50 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-12-22 15:04:50 -0800 |
commit | 8babcc2ad21f70745ce261476ffe74b42603419a (patch) | |
tree | 77c84f2535114a3eef4219fcca94a2d2293a2c1d /plugins/LinkPreview/Makefile | |
parent | d5c2b0d21695f2ae661fa7ef4bbfbe9db0f66925 (diff) |
Makefile to compress LinkPreview's js
Diffstat (limited to 'plugins/LinkPreview/Makefile')
-rw-r--r-- | plugins/LinkPreview/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/LinkPreview/Makefile b/plugins/LinkPreview/Makefile new file mode 100644 index 000000000..6c8a03e94 --- /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 $@ |