diff options
author | Brion Vibber <brion@pobox.com> | 2010-12-22 15:20:07 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-12-22 15:22:02 -0800 |
commit | e0606d3eca761bda5fb804f6522028280d3396e8 (patch) | |
tree | 6a25c7d9b7f5419b0d4103d64101a7d2eccfe1de /js/Makefile | |
parent | 8babcc2ad21f70745ce261476ffe74b42603419a (diff) |
Break xbImportNode.js and geometa.js back out of util.js; the Makefile in js has been updated to combine them with util.js source when building util.min.js0.9.x
Revert "combine our standard scripts into one big script"
This reverts parts of commit 0c5ca46ba3a070803d993b0244fcc69d33875ebd.
Diffstat (limited to 'js/Makefile')
-rw-r--r-- | js/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/js/Makefile b/js/Makefile index 00e434714..e7ae44e42 100644 --- a/js/Makefile +++ b/js/Makefile @@ -1,11 +1,12 @@ .fake: all clean TARGETS=util.min.js +SOURCES=util.js xbImportNode.js geometa.js all: $(TARGETS) clean: rm -f $(TARGETS) -util.min.js: util.js - yui-compressor $< -o $@ +util.min.js: $(SOURCES) + cat $+ | yui-compressor --type js > $@ |