From 3aa90e49cd7dd7bc5dd7b9649b5d1b92abeb4f1b Mon Sep 17 00:00:00 2001 From: Robert Hak Date: Sun, 16 Jun 2002 23:36:08 +0000 Subject: [PATCH] added boxes, sokoban, bounce, removed screensaver git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1023 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/x11/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index a083fc6548..853e42a5d5 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -73,7 +73,7 @@ APPS = main.c tree.c play.c menu.c credits.c main_menu.c sound_menu.c \ playlist.c ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) - APPS += tetris.c bounce.c screensaver.c icons.c bmp.c + APPS += tetris.c sokoban.c bounce.c boxes.c icons.c bmp.c endif SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c mpeg.c \ @@ -153,10 +153,13 @@ $(OBJDIR)/icons.o: $(RECDIR)/icons.c $(OBJDIR)/tetris.o: $(RECDIR)/tetris.c $(CC) $(CFLAGS) -c $< -o $@ +$(OBJDIR)/sokoban.o: $(RECDIR)/sokoban.c + $(CC) $(CFLAGS) -c $< -o $@ + $(OBJDIR)/bounce.o: $(RECDIR)/bounce.c $(CC) $(CFLAGS) -c $< -o $@ -$(OBJDIR)/screensaver.o: $(RECDIR)/screensaver.c +$(OBJDIR)/boxes.o: $(RECDIR)/boxes.c $(CC) $(CFLAGS) -c $< -o $@ $(OBJDIR)/main.o: $(APPDIR)/main.c