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 \ MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) - APPS += tetris.c sokoban.c bounce.c snow.c bmp.c \ + APPS += snake.c tetris.c sokoban.c bounce.c snow.c bmp.c \ widgets.c wormlet.c endif @@ -121,6 +121,9 @@ $(OBJDIR)/icons.o: $(MACHINEDIR)/icons.c $(OBJDIR)/widgets.o: $(RECDIR)/widgets.c $(CC) $(APPCFLAGS) -c $< -o $@ +$(OBJDIR)/snake.o: $(RECDIR)/snake.c + $(CC) $(APPCFLAGS) -c $< -o $@ + $(OBJDIR)/tetris.o: $(RECDIR)/tetris.c $(CC) $(APPCFLAGS) -c $< -o $@