X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=ca8ccf6e29a50384897feb8ede3915f56604df0e;hb=36f37d2d6041b491dd5f506fb4f1778bb4218ea1;hp=d7a01dfed9a533e93600a926e8cca5148e924093;hpb=3124638fac4b5bf200cfb70ddb0cd5a7d896f144;p=picodrive.git diff --git a/Makefile b/Makefile index d7a01df..ca8ccf6 100644 --- a/Makefile +++ b/Makefile @@ -1,18 +1,31 @@ TARGET ?= PicoDrive -CFLAGS += -Wall -ggdb -falign-functions=2 +DEBUG = 0 +CFLAGS += -Wall CFLAGS += -I. -DINLINE=inline -ifndef DEBUG -CFLAGS += -O2 -DNDEBUG -ffunction-sections -ifeq ($(findstring clang,$(CC)),) -LDFLAGS += -Wl,--gc-sections + +ifeq ($(DEBUG),1) + CFLAGS += -g -O0 +else + ifeq ($(platform), vita) + CFLAGS += -O3 -DNDEBUG + else + CFLAGS += -O2 -DNDEBUG -ffunction-sections + endif endif + +ifneq ($(APPLE),1) + LDFLAGS += -Wl,--gc-sections endif + #CFLAGS += -DEVT_LOG #CFLAGS += -DDRC_CMP #cpu_cmp = 1 #drc_debug = 7 #profile = 1 +ifeq ($(WANT_GDB),1) +CFLAGS += ggdb -falign-functions=2 +endif all: config.mak target_