summaryrefslogtreecommitdiff
path: root/uisimulator/x11/Makefile
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-06-24 08:49:20 +0000
committerRobert Hak <adiamas@rockbox.org>2002-06-24 08:49:20 +0000
commitbb5579e83824273cee9bb30fc220b62890937bce (patch)
treec707094ac7f05b3e755e5c6cfc0f8fe6b4f41408 /uisimulator/x11/Makefile
parent01a264fb83e0d1e76211ca1410753f7e903852b7 (diff)
downloadrockbox-bb5579e83824273cee9bb30fc220b62890937bce.tar.gz
rockbox-bb5579e83824273cee9bb30fc220b62890937bce.zip
added screensaver and games menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1141 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/Makefile')
-rw-r--r--uisimulator/x11/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 75a823e361..d33fc5a30e 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -76,7 +76,7 @@ APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall
76FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c settings.c 76FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c settings.c
77 77
78APPS = main.c tree.c play.c menu.c credits.c main_menu.c sound_menu.c \ 78APPS = main.c tree.c play.c menu.c credits.c main_menu.c sound_menu.c \
79 playlist.c showtext.c 79 playlist.c showtext.c games_menu.c screensavers_menu.c
80 80
81ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 81ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
82 APPS += tetris.c sokoban.c bounce.c boxes.c icons.c bmp.c 82 APPS += tetris.c sokoban.c bounce.c boxes.c icons.c bmp.c
@@ -153,6 +153,12 @@ $(OBJDIR)/main_menu.o: $(APPDIR)/main_menu.c
153$(OBJDIR)/sound_menu.o: $(APPDIR)/sound_menu.c 153$(OBJDIR)/sound_menu.o: $(APPDIR)/sound_menu.c
154 $(CC) $(APPCFLAGS) -c $< -o $@ 154 $(CC) $(APPCFLAGS) -c $< -o $@
155 155
156$(OBJDIR)/games_menu.o: $(APPDIR)/games_menu.c
157 $(CC) $(APPCFLAGS) -c $< -o $@
158
159$(OBJDIR)/screensavers_menu.o: $(APPDIR)/screensavers_menu.c
160 $(CC) $(APPCFLAGS) -c $< -o $@
161
156$(OBJDIR)/icons.o: $(RECDIR)/icons.c 162$(OBJDIR)/icons.o: $(RECDIR)/icons.c
157 $(CC) $(APPCFLAGS) -c $< -o $@ 163 $(CC) $(APPCFLAGS) -c $< -o $@
158 164