DEV_BUILD builds will now be compiled with DEBUG=y.

This commit is contained in:
OBattler
2017-11-26 09:36:05 +01:00
parent 0e1cbadb48
commit 6eca46e613

View File

@@ -8,7 +8,7 @@
# #
# Makefile for Win32 (MinGW32) environment. # Makefile for Win32 (MinGW32) environment.
# #
# Version: @(#)Makefile.mingw 1.0.80 2017/11/19 # Version: @(#)Makefile.mingw 1.0.81 2017/11/26
# #
# Authors: Miran Grca, <mgrca8@gmail.com> # Authors: Miran Grca, <mgrca8@gmail.com>
# Fred N. van Kempen, <decwiz@yahoo.com> # Fred N. van Kempen, <decwiz@yahoo.com>
@@ -97,6 +97,7 @@ ifndef PROG
endif endif
ifeq ($(DEV_BUILD), y) ifeq ($(DEV_BUILD), y)
DEBUG := y
DEV_BRANCH := y DEV_BRANCH := y
CIRRUS := y CIRRUS := y
NE1000 := y NE1000 := y
@@ -184,7 +185,8 @@ ifeq ($(DEBUG), y)
DFLAGS += -ggdb -DDEBUG DFLAGS += -ggdb -DDEBUG
AOPTIM := AOPTIM :=
ifndef COPTIM ifndef COPTIM
COPTIM := -Og # COPTIM := -Og
COPTIM := -O0
endif endif
else else
ifeq ($(OPTIM), y) ifeq ($(OPTIM), y)