diff options
author | notaz | 2009-06-23 12:28:13 +0300 |
---|---|---|
committer | notaz | 2009-06-23 12:28:13 +0300 |
commit | c872443f88bd037784f795767041db9e307ac3f0 (patch) | |
tree | ae543b06d5807d04ff625eb3181081797fd59892 /gp2x/Makefile | |
parent | 4cadce9738bb306c1c31cde89f91feb8132875cf (diff) | |
download | picogpsp-c872443f88bd037784f795767041db9e307ac3f0.tar.gz picogpsp-c872443f88bd037784f795767041db9e307ac3f0.tar.bz2 picogpsp-c872443f88bd037784f795767041db9e307ac3f0.zip |
updated to warm r2
Diffstat (limited to 'gp2x/Makefile')
-rw-r--r-- | gp2x/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
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: |