]> git.wh0rd.org - chrome-ext/music-player-client.git/blob - Makefile
images: update small tile to try & pass CWS guidelines
[chrome-ext/music-player-client.git] / Makefile
1 CLOSURE = closure-compiler --language_in ECMASCRIPT5
2
3 all:
4
5 %.js.min: %.js
6 $(CLOSURE) $< > $@
7
8 JS_FILES = $(shell grep '[.]js$$' manifest.files)
9 js-min: $(JS_FILES:=.min)
10
11 check: js-min
12
13 .PHONY: all clean check js-min