diff options
author | Robert Hak <adiamas@rockbox.org> | 2002-06-16 23:36:08 +0000 |
---|---|---|
committer | Robert Hak <adiamas@rockbox.org> | 2002-06-16 23:36:08 +0000 |
commit | 3aa90e49cd7dd7bc5dd7b9649b5d1b92abeb4f1b (patch) | |
tree | 18070947254e7d220f0375cbcba27fccc4ef50d4 /uisimulator | |
parent | 6077eb3f466e47318a5a8e4a413a5cb6264eeb28 (diff) |
added boxes, sokoban, bounce, removed screensaver
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1023 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/x11/Makefile | 7 |
1 files 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 |