snd fix
[fceu.git] / Makefile.gp2x
index d9868b3..95398d6 100644 (file)
@@ -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/*
+
+