From e0606d3eca761bda5fb804f6522028280d3396e8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 22 Dec 2010 15:20:07 -0800 Subject: 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.js Revert "combine our standard scripts into one big script" This reverts parts of commit 0c5ca46ba3a070803d993b0244fcc69d33875ebd. --- js/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'js/Makefile') 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 > $@ -- cgit v1.2.3-54-g00ecf