summaryrefslogtreecommitdiff
path: root/uisimulator/x11
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-08-26 09:21:59 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-08-26 09:21:59 +0000
commite67958ba8665655ffb16b2358a82a64c56403912 (patch)
tree10db4a339ef013becc91058f84f11b5c786ce00f /uisimulator/x11
parentf8c87e6c508f34d783272370ef7de92b480147da (diff)
downloadrockbox-e67958ba8665655ffb16b2358a82a64c56403912.tar.gz
rockbox-e67958ba8665655ffb16b2358a82a64c56403912.zip
Adapted wormlet to code standard and added it to simulators.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1978 a1c6a512-1295-4272-9138-f99709370657
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