# HG changeset patch # User Matthew Wild # Date 1679050822 0 # Node ID 808fd9673669a7829185056fc984611bada2cc16 # Parent 7d6070e5a096b9d5627c8b402ed15b679ac5897c Makefile: remove -q by default for easier debugging of build issues diff -r 7d6070e5a096 -r 808fd9673669 Makefile --- a/Makefile Fri May 05 09:48:31 2017 +0100 +++ b/Makefile Fri Mar 17 11:00:22 2023 +0000 @@ -1,11 +1,11 @@ -OPTIONS=-q --with-minify --with-uglify --with-compile --with-virtual-io +OPTIONS= --with-minify --with-uglify --with-compile --with-virtual-io squish: squish.lua squishy ./squish.lua $(OPTIONS) # Bootstrap squish chmod +x squish - ./squish -q gzip # Minify gunzip code - ./squish -q debug # Minify debug code + ./squish gzip # Minify gunzip code + ./squish debug # Minify debug code ./squish $(OPTIONS) --with-gzip --with-debug # Build squish with minified gzip/debug install: squish