e0606d3eca
Revert "combine our standard scripts into one big script"
This reverts parts of commit 0c5ca46ba3
.
13 lines
189 B
Makefile
13 lines
189 B
Makefile
.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 > $@
|