defs-dev.mk, defs-dist.mk, defs.mk: Add COMPILE_DEBUG_LOG

This commit is contained in:
Jan Lindemann 2007-09-11 13:53:01 +00:00 committed by Jan Lindemann
commit 8da67697cf
3 changed files with 7 additions and 0 deletions

View file

@ -158,6 +158,7 @@ LOG_THREAD_NAMES = true
#STRIP_SYMBOLS = true
COMPILE_DEBUG_CODE = true
COMPILE_DEBUG_LOG = true
USE_COMPILER_DEBUG_OPTS = true
#USE_COMPILER_OPTIMIZATION_OPTS = true

View file

@ -159,6 +159,7 @@ LOGDIRMODE ?= $(DOCDIRMODE)
#STRIP_SYMBOLS = true
COMPILE_DEBUG_CODE = true
#COMPILE_DEBUG_LOG = true
USE_COMPILER_DEBUG_OPTS = true
USE_COMPILER_OPTIMIZATION_OPTS = true

View file

@ -528,6 +528,11 @@ ifeq ($(COMPILE_DEBUG_CODE),true)
CPPFLAGS += -D_DEBUG_
endif
ifeq ($(COMPILE_DEBUG_LOG),true)
CFLAGS += -D_LOG_DEBUG_
CPPFLAGS += -D_LOG_DEBUG_
endif
ifeq ($(USE_MPATROL),true)
CFLAGS += -include $(MODDIR)/include/mpatrol.h
CPPFLAGS += -include $(MODDIR)/include/mpatrol.h