X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.gp2x;h=94693c224bd163d4c50b023f4ca59b61fbf883cd;hb=81bd66a11186efb420eb8d6fd5766f0ef26d5919;hp=d9868b3b2f4ec4e0e6b8fa2db1d1fe44b439b508;hpb=5a2aa426410ad21d332ff75b58e7f4ed8459d86a;p=fceu.git diff --git a/Makefile.gp2x b/Makefile.gp2x index d9868b3..94693c2 100644 --- a/Makefile.gp2x +++ b/Makefile.gp2x @@ -16,7 +16,7 @@ LDRIVER += -O3 # -pg endif asm_6502=1 -#debug_asm_6502=1 +debug_asm_6502=1 all: fceu @@ -42,6 +42,7 @@ OBJDRIVER += x6502.o endif x6502.o: x6502.c x6502.h ops.h fce.h sound.h + ncpu.o: ncpu.S ncpu.h $(CC) $(TFLAGS) -c $< -o $@ @@ -60,3 +61,14 @@ include Makefile.common up: fceu cp -v fceu /mnt/gp2x/mnt/sd/emus/Gpfce_v02/gpfce +# ----------- release ----------- +ifneq ($(findstring rel,$(MAKECMDGOALS)),) +ifeq ($(VER),) +$(error need VER) +endif +endif + +rel: gpfce + zip -9 -j Gpfce_v$(VER).zip $^ drivers/gp2x/mmuhack.o out_gp2x/* + +