summaryrefslogtreecommitdiff
path: root/uisimulator/win32/Makefile
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-10-15 07:19:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-10-15 07:19:08 +0000
commitde5578a0f82d77c8efd8877f1a34ac3ba7bc90f7 (patch)
tree412a93809c91423077c8c084cafee7a361d3b3a7 /uisimulator/win32/Makefile
parent9277d8724e33e42695b0ab7049be788f69dfe56e (diff)
downloadrockbox-de5578a0f82d77c8efd8877f1a34ac3ba7bc90f7.tar.gz
rockbox-de5578a0f82d77c8efd8877f1a34ac3ba7bc90f7.zip
Added cube.c to build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2628 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32/Makefile')
-rw-r--r--uisimulator/win32/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 4554f39888..bcfef516ca 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -75,7 +75,7 @@ MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
75 75
76ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 76ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
77 APPS += tetris.c sokoban.c bounce.c snow.c bmp.c \ 77 APPS += tetris.c sokoban.c bounce.c snow.c bmp.c \
78 widgets.c wormlet.c 78 widgets.c wormlet.c cube.c
79endif 79endif
80 80
81SRCS = button.c dir-win32.c lcd-win32.c panic-win32.c thread-win32.c \ 81SRCS = button.c dir-win32.c lcd-win32.c panic-win32.c thread-win32.c \
@@ -143,6 +143,9 @@ $(OBJDIR)/sokoban.o: $(RECDIR)/sokoban.c
143$(OBJDIR)/bounce.o: $(RECDIR)/bounce.c 143$(OBJDIR)/bounce.o: $(RECDIR)/bounce.c
144 $(CC) $(APPCFLAGS) -c $< -o $@ 144 $(CC) $(APPCFLAGS) -c $< -o $@
145 145
146$(OBJDIR)/cube.o: $(RECDIR)/cube.c
147 $(CC) $(APPCFLAGS) -c $< -o $@
148
146$(OBJDIR)/snow.o: $(RECDIR)/snow.c 149$(OBJDIR)/snow.o: $(RECDIR)/snow.c
147 $(CC) $(APPCFLAGS) -c $< -o $@ 150 $(CC) $(APPCFLAGS) -c $< -o $@
148 151