Makefile to compress LinkPreview's js

This commit is contained in:
Brion Vibber 2010-12-22 15:04:50 -08:00
parent d5c2b0d216
commit 8babcc2ad2
1 changed files with 11 additions and 0 deletions

View File

@ -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 $@