mirror of
https://github.com/Maschell/libutils.git
synced 2024-11-05 20:55:08 +01:00
Activate logging for the lib itself (function patching)
This commit is contained in:
parent
218a430a4a
commit
7db739c0b1
7
Makefile
7
Makefile
@ -1,3 +1,5 @@
|
|||||||
|
DO_LOGGING := 1
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
@ -33,6 +35,11 @@ LIB := lib
|
|||||||
CFLAGS = -g -Os -Wall -D__wiiu__ -D_GNU_SOURCE $(MACHDEP) $(INCLUDE)
|
CFLAGS = -g -Os -Wall -D__wiiu__ -D_GNU_SOURCE $(MACHDEP) $(INCLUDE)
|
||||||
CXXFLAGS = $(CFLAGS)
|
CXXFLAGS = $(CFLAGS)
|
||||||
|
|
||||||
|
ifeq ($(DO_LOGGING), 1)
|
||||||
|
CFLAGS += -D__LOGGING__
|
||||||
|
CXXFLAGS += -D__LOGGING__
|
||||||
|
endif
|
||||||
|
|
||||||
ASFLAGS := -mregnames
|
ASFLAGS := -mregnames
|
||||||
|
|
||||||
export WIIUBIN := $(LIB)/libutils.a
|
export WIIUBIN := $(LIB)/libutils.a
|
||||||
|
Loading…
Reference in New Issue
Block a user