diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -6,6 +6,7 @@ GPP := g++ C_INCLUDES := -Iinclude/config -Iinclude/core -Iinclude/effects -Iinclude/images -Iinclude/gpu -Iinclude/utils -Igpu/include CFLAGS := -Wall -fstrict-aliasing +#CFLAGS += -W -Wextra -Wcast-align -Wchar-subscripts -Wformat -Wformat-security -Wno-format-y2k -Wno-parentheses -Wno-unused-parameter -Wpointer-arith -Wreturn-type -Wundef -Wwrite-strings CFLAGS_SSE2 = $(CFLAGS) -msse2 LINKER_OPTS := -lpthread -lz DEFINES := -DSK_CAN_USE_FLOAT @@ -19,9 +20,9 @@ endif ifeq ($(SKIA_DEBUG),true) DEFINES += -DSK_DEBUG -DSK_SUPPORT_UNIT -DGR_DEBUG=1 - CFLAGS := -g + CFLAGS += -g else - CFLAGS := -O2 + CFLAGS += -O2 DEFINES += -DSK_RELEASE -DGR_DEBUG=0 endif |