summaryrefslogtreecommitdiff
path: root/js/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'js/Makefile')
-rw-r--r--js/Makefile5
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 > $@