diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/Makefile b/js/Makefile new file mode 100644 index 000000000..00e434714 --- /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 $@ |