diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-12-02 18:32:32 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-12-02 18:32:32 +0100 |
commit | 8ad70c4ee78c26625dd40973bc9cdb57050e7034 (patch) | |
tree | bae1dd6cedd2d5f7211166836e8b8e087206b24a | |
parent | simplify by loading and preparsing in separate function + add reverse video for duplicated words + wait on the last word before exiting + m (diff) | |
download | read-quickly-8ad70c4ee78c26625dd40973bc9cdb57050e7034.tar.gz read-quickly-8ad70c4ee78c26625dd40973bc9cdb57050e7034.tar.bz2 read-quickly-8ad70c4ee78c26625dd40973bc9cdb57050e7034.tar.xz |
portable compiler flags1.0
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | Makefile | 14 |
1 files changed, 2 insertions, 12 deletions
@@ -17,18 +17,8 @@ LICENSEDIR = $(DATADIR)/licenses PKGNAME = rq COMMAND = rq -#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 +OPTIMISE = -O2 +WARN = -Wall -Wextra -pedantic FLAGS = -std=c99 $(WARN) $(OPTIMISE) |