X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=ca8ccf6e29a50384897feb8ede3915f56604df0e;hb=c13c91cd04513cc6c0d12e9714a5952607323333;hp=9b364dd9cd2ed9657333bff693488f058fc25894;hpb=88f7643f70681d211c71a30d845592d48b1b9bea;p=picodrive.git diff --git a/Makefile b/Makefile index 9b364dd..ca8ccf6 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,22 @@ TARGET ?= PicoDrive +DEBUG = 0 CFLAGS += -Wall CFLAGS += -I. -DINLINE=inline -ifndef DEBUG -ifeq ($(platform), vita) -CFLAGS += -O3 -DNDEBUG + +ifeq ($(DEBUG),1) + CFLAGS += -g -O0 else -CFLAGS += -O2 -DNDEBUG -ffunction-sections + ifeq ($(platform), vita) + CFLAGS += -O3 -DNDEBUG + else + CFLAGS += -O2 -DNDEBUG -ffunction-sections + endif endif + ifneq ($(APPLE),1) -LDFLAGS += -Wl,--gc-sections -endif + LDFLAGS += -Wl,--gc-sections endif + #CFLAGS += -DEVT_LOG #CFLAGS += -DDRC_CMP #cpu_cmp = 1 @@ -21,7 +27,6 @@ ifeq ($(WANT_GDB),1) CFLAGS += ggdb -falign-functions=2 endif - all: config.mak target_ ifndef NO_CONFIG_MAK