Makefile: remove -q by default for easier debugging of build issues lua5.2

Fri, 17 Mar 2023 11:00:22 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Fri, 17 Mar 2023 11:00:22 +0000
branch
lua5.2
changeset 97
808fd9673669
parent 96
7d6070e5a096
child 98
61085789b12b

Makefile: remove -q by default for easier debugging of build issues

Makefile file | annotate | diff | comparison | revisions
--- 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

mercurial