summaryrefslogtreecommitdiff
path: root/js/Makefile
blob: 00e43471416e78b4e20d2e1aee2977fe815844b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
.fake: all clean

TARGETS=util.min.js

all: $(TARGETS)

clean:
	rm -f $(TARGETS)

util.min.js: util.js
	yui-compressor $< -o $@