Skip to content
Snippets Groups Projects
Commit fe4cfd37 authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Added JS minification to Makefile

parent 100c2156
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,11 @@ min: all
printf '%-20s : ' $$f 1>&2; \
mincss -v -o $$f $$f; \
done
@for f in $(SCRIPTS); do \
echo $$f; \
closure-compiler --js $$f --js_output_file .tmp.js; \
mv .tmp.js $$f; \
done
$(CACHE_DIR):
mkdir $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment