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

TARGETS=util.min.js
SOURCES=util.js xbImportNode.js geometa.js

all: $(TARGETS)

clean:
	rm -f $(TARGETS)

util.min.js: $(SOURCES)
	cat $+ | yui-compressor --type js > $@