disable the console again on release builds
This commit is contained in:
parent
563af1ea68
commit
0a382f43bc
3
Makefile
3
Makefile
|
@ -55,6 +55,9 @@ ifeq ($(DEBUG), 1)
|
||||||
OPTIMIZE_FLAG = -O0 -g
|
OPTIMIZE_FLAG = -O0 -g
|
||||||
else
|
else
|
||||||
OPTIMIZE_FLAG = -O3 -ffast-math
|
OPTIMIZE_FLAG = -O3 -ffast-math
|
||||||
|
ifneq ($(findstring Win32,$(OS)),)
|
||||||
|
LDFLAGS += -mwindows
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CFLAGS += -Wall $(OPTIMIZE_FLAG) $(INCLUDE_DIRS) $(DEBUG_FLAG) -I.
|
CFLAGS += -Wall $(OPTIMIZE_FLAG) $(INCLUDE_DIRS) $(DEBUG_FLAG) -I.
|
||||||
|
|
Loading…
Reference in New Issue