summaryrefslogtreecommitdiff
path: root/uisimulator/x11
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/x11')
-rw-r--r--uisimulator/x11/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index c381b915b2..7a61c50ed3 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -89,7 +89,8 @@ APPS = main.c tree.c menu.c credits.c main_menu.c\
89MENUS = games_menu.c screensavers_menu.c settings_menu.c sound_menu.c 89MENUS = games_menu.c screensavers_menu.c settings_menu.c sound_menu.c
90 90
91ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 91ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
92 APPS += tetris.c sokoban.c blank.c bounce.c boxes.c icons.c bmp.c widgets.c 92 APPS += tetris.c sokoban.c blank.c bounce.c boxes.c icons.c bmp.c \
93 widgets.c wormlet.c
93endif 94endif
94 95
95SRCS = 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 \
@@ -184,6 +185,9 @@ $(OBJDIR)/widgets.o: $(RECDIR)/widgets.c
184$(OBJDIR)/tetris.o: $(RECDIR)/tetris.c 185$(OBJDIR)/tetris.o: $(RECDIR)/tetris.c
185 $(CC) $(APPCFLAGS) -c $< -o $@ 186 $(CC) $(APPCFLAGS) -c $< -o $@
186 187
188$(OBJDIR)/wormlet.o: $(RECDIR)/wormlet.c
189 $(CC) $(APPCFLAGS) -c $< -o $@
190
187$(OBJDIR)/sokoban.o: $(RECDIR)/sokoban.c 191$(OBJDIR)/sokoban.o: $(RECDIR)/sokoban.c
188 $(CC) $(APPCFLAGS) -c $< -o $@ 192 $(CC) $(APPCFLAGS) -c $< -o $@
189 193