summaryrefslogtreecommitdiff
path: root/uisimulator/x11
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/x11')
-rw-r--r--uisimulator/x11/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 3b9d4be009..d2b109e443 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -90,7 +90,7 @@ APPS = main.c tree.c menu.c credits.c main_menu.c\
90MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c 90MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
91 91
92ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 92ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
93 APPS += tetris.c sokoban.c bounce.c snow.c bmp.c widgets.c wormlet.c 93 APPS += tetris.c sokoban.c bounce.c snake.c snow.c bmp.c widgets.c wormlet.c
94endif 94endif
95 95
96SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c stubs.c \ 96SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c stubs.c \
@@ -194,6 +194,9 @@ $(OBJDIR)/sokoban.o: $(RECDIR)/sokoban.c
194$(OBJDIR)/bounce.o: $(RECDIR)/bounce.c 194$(OBJDIR)/bounce.o: $(RECDIR)/bounce.c
195 $(CC) $(APPCFLAGS) -c $< -o $@ 195 $(CC) $(APPCFLAGS) -c $< -o $@
196 196
197$(OBJDIR)/snake.o: $(RECDIR)/snake.c
198 $(CC) $(APPCFLAGS) -c $< -o $@
199
197$(OBJDIR)/snow.o: $(RECDIR)/snow.c 200$(OBJDIR)/snow.o: $(RECDIR)/snow.c
198 $(CC) $(APPCFLAGS) -c $< -o $@ 201 $(CC) $(APPCFLAGS) -c $< -o $@
199 202