diff --git a/js/Makefile b/js/Makefile new file mode 100644 index 0000000000..00e4347141 --- /dev/null +++ b/js/Makefile @@ -0,0 +1,11 @@ +.fake: all clean + +TARGETS=util.min.js + +all: $(TARGETS) + +clean: + rm -f $(TARGETS) + +util.min.js: util.js + yui-compressor $< -o $@