Improve logging to include module name

This commit is contained in:
Maschell
2022-05-07 23:20:46 +02:00
parent ec285320d8
commit e0f745f0c9
6 changed files with 74 additions and 46 deletions

View File

@@ -21,7 +21,7 @@ WUT_ROOT := $(DEVKITPRO)/wut
#-------------------------------------------------------------------------------
TARGET := FunctionPatcherModule
BUILD := build
SOURCES := source
SOURCES := source source/utils
DATA := data
INCLUDES := source
@@ -43,6 +43,11 @@ CXXFLAGS += -DDEBUG -g
CFLAGS += -DDEBUG -g
endif
ifeq ($(DEBUG),VERBOSE)
CXXFLAGS += -DDEBUG -DVERBOSE_DEBUG -g
CFLAGS += -DDEBUG -DVERBOSE_DEBUG -g
endif
LIBS := -lwums -lwut -lkernel
#-------------------------------------------------------------------------------