summaryrefslogtreecommitdiff
path: root/uisimulator/win32/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/win32/Makefile')
-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