From c872443f88bd037784f795767041db9e307ac3f0 Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 23 Jun 2009 12:28:13 +0300 Subject: updated to warm r2 --- gp2x/Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'gp2x/Makefile') diff --git a/gp2x/Makefile b/gp2x/Makefile index 94eb604..376970b 100644 --- a/gp2x/Makefile +++ b/gp2x/Makefile @@ -10,8 +10,12 @@ STRIP = $(PREFIX)/bin/arm-open2x-linux-strip OBJS = main.o cpu.o memory.u video.o input.o sound.o gp2x.o gui.o \ cheats.o zip.o cpu_threaded.z arm_stub.o video_blend.o \ - warm.o sys_cacheflush.o upscale_aspect.o -BIN = gpsp.gpe + warm.o upscale_aspect.o +ifeq ($(WIZ),1) +BIN = gpsp_wiz +else +BIN = gpsp_gp2x +endif # Platform specific definitions @@ -31,9 +35,6 @@ ifneq ($(WIZ),1) LIBS += -static endif -#CFLAGS += -ggdb -#LIBS += -ggdb - # Compilation: .SUFFIXES: .c @@ -54,7 +55,7 @@ endif $(CC) $(ASFLAGS) $(INCLUDES) -c -o $@ $< all: $(OBJS) - $(CC) $(OBJS) $(LIBS) -o $(BIN) + $(CC) $(OBJS) $(LIBS) -o $(BIN) $(STRIP) $(BIN) clean: -- cgit v1.2.3