summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-15 13:31:53 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-15 13:31:53 +0000
commitc1ea15f4f9861819609860da40c9db8f649f596e (patch)
tree57f01203d63d3f9efc9f826395315a17b6e7dd65
parent151a86d87150151ebab5a541eb4e2166dc2b6403 (diff)
downloadrockbox-c1ea15f4f9861819609860da40c9db8f649f596e.tar.gz
rockbox-c1ea15f4f9861819609860da40c9db8f649f596e.zip
added bounce.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1014 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/x11/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 0aac0a0783..a083fc6548 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -73,7 +73,7 @@ APPS = main.c tree.c play.c menu.c credits.c main_menu.c sound_menu.c \
73 playlist.c 73 playlist.c
74 74
75ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 75ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
76 APPS += tetris.c screensaver.c icons.c bmp.c 76 APPS += tetris.c bounce.c screensaver.c icons.c bmp.c
77endif 77endif
78 78
79SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c mpeg.c \ 79SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c mpeg.c \
@@ -153,6 +153,9 @@ $(OBJDIR)/icons.o: $(RECDIR)/icons.c
153$(OBJDIR)/tetris.o: $(RECDIR)/tetris.c 153$(OBJDIR)/tetris.o: $(RECDIR)/tetris.c
154 $(CC) $(CFLAGS) -c $< -o $@ 154 $(CC) $(CFLAGS) -c $< -o $@
155 155
156$(OBJDIR)/bounce.o: $(RECDIR)/bounce.c
157 $(CC) $(CFLAGS) -c $< -o $@
158
156$(OBJDIR)/screensaver.o: $(RECDIR)/screensaver.c 159$(OBJDIR)/screensaver.o: $(RECDIR)/screensaver.c
157 $(CC) $(CFLAGS) -c $< -o $@ 160 $(CC) $(CFLAGS) -c $< -o $@
158 161