aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-12-02 15:00:55 +0100
committerMattias Andrée <maandree@operamail.com>2015-12-02 15:00:55 +0100
commit8d8f909896caba6c612d636da12637a4b846ed88 (patch)
tree063d7f298c707d5fb5e7b353c5ad9f8dbc67b25f
parentadd missing include (diff)
downloadread-quickly-8d8f909896caba6c612d636da12637a4b846ed88.tar.gz
read-quickly-8d8f909896caba6c612d636da12637a4b846ed88.tar.bz2
read-quickly-8d8f909896caba6c612d636da12637a4b846ed88.tar.xz
use better compiler flags for development
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--Makefile14
1 files changed, 12 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5dc0ed8..e002e7e 100644
--- a/Makefile
+++ b/Makefile
@@ -17,8 +17,18 @@ LICENSEDIR = $(DATADIR)/licenses
PKGNAME = rq
COMMAND = rq
-OPTIMISE = -O2
-WARN = -Wall -Wextra -pedantic
+#OPTIMISE = -O2
+#WARN = -Wall -Wextra -pedantic
+OPTIMISE = -Og -g
+WARN = -Wall -Wextra -Wdouble-promotion -Wformat=2 -Winit-self -Wmissing-include-dirs \
+ -Wtrampolines -Wfloat-equal -Wshadow -Wmissing-prototypes -Wmissing-declarations \
+ -Wredundant-decls -Wnested-externs -Winline -Wno-variadic-macros -Wsign-conversion \
+ -Wswitch-default -Wconversion -Wsync-nand -Wunsafe-loop-optimizations -Wcast-align \
+ -Wstrict-overflow -Wdeclaration-after-statement -Wundef -Wbad-function-cast \
+ -Wcast-qual -Wwrite-strings -Wlogical-op -Waggregate-return -Wstrict-prototypes \
+ -Wold-style-definition -Wpacked -Wvector-operation-performance \
+ -Wunsuffixed-float-constants -Wsuggest-attribute=const -Wsuggest-attribute=noreturn \
+ -Wsuggest-attribute=pure -Wsuggest-attribute=format -Wnormalized=nfkc -pedantic
FLAGS = -std=c99 $(WARN) $(OPTIMISE)