Makefile to re-generate util.min.js (needs yui-compressor in path)

This commit is contained in:
Brion Vibber 2010-12-15 15:00:44 -08:00
parent 2836c4e561
commit b7f43c8127
1 changed files with 11 additions and 0 deletions

11
js/Makefile Normal file
View File

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