summaryrefslogtreecommitdiff
path: root/uisimulator/win32
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-09-10 21:21:29 +0000
committerRobert Hak <adiamas@rockbox.org>2002-09-10 21:21:29 +0000
commit2625ebb202b546ff6d4c87b0c007e8df33df37d7 (patch)
tree4b662d0ebb7ecccd7a28f4010d8dead559edac84 /uisimulator/win32
parentc633d42212eb390fb69b68eb5b56304d6ed581b8 (diff)
downloadrockbox-2625ebb202b546ff6d4c87b0c007e8df33df37d7.tar.gz
rockbox-2625ebb202b546ff6d4c87b0c007e8df33df37d7.zip
added snake ref
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2262 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32')
-rw-r--r--uisimulator/win32/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 85d61fe907..6803e85d54 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -69,7 +69,7 @@ APPS = main.c tree.c menu.c credits.c main_menu.c icons.c \
69MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c 69MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
70 70
71ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 71ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
72 APPS += tetris.c sokoban.c bounce.c snow.c bmp.c \ 72 APPS += snake.c tetris.c sokoban.c bounce.c snow.c bmp.c \
73 widgets.c wormlet.c 73 widgets.c wormlet.c
74endif 74endif
75 75
@@ -121,6 +121,9 @@ $(OBJDIR)/icons.o: $(MACHINEDIR)/icons.c
121$(OBJDIR)/widgets.o: $(RECDIR)/widgets.c 121$(OBJDIR)/widgets.o: $(RECDIR)/widgets.c
122 $(CC) $(APPCFLAGS) -c $< -o $@ 122 $(CC) $(APPCFLAGS) -c $< -o $@
123 123
124$(OBJDIR)/snake.o: $(RECDIR)/snake.c
125 $(CC) $(APPCFLAGS) -c $< -o $@
126
124$(OBJDIR)/tetris.o: $(RECDIR)/tetris.c 127$(OBJDIR)/tetris.o: $(RECDIR)/tetris.c
125 $(CC) $(APPCFLAGS) -c $< -o $@ 128 $(CC) $(APPCFLAGS) -c $< -o $@
126 129