diff options
author | Robert Hak <adiamas@rockbox.org> | 2002-09-10 20:56:31 +0000 |
---|---|---|
committer | Robert Hak <adiamas@rockbox.org> | 2002-09-10 20:56:31 +0000 |
commit | c633d42212eb390fb69b68eb5b56304d6ed581b8 (patch) | |
tree | c2386a7c556a9f6383d4ca0cd0f8cc02e495a36f /uisimulator | |
parent | 5d33b5b68fb2956df419322da613c3fc27177bc6 (diff) |
snakes reference added
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2261 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/x11/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index 3b9d4be009..d2b109e443 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -90,7 +90,7 @@ APPS = main.c tree.c menu.c credits.c main_menu.c\ MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) - APPS += tetris.c sokoban.c bounce.c snow.c bmp.c widgets.c wormlet.c + APPS += tetris.c sokoban.c bounce.c snake.c snow.c bmp.c widgets.c wormlet.c endif SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c stubs.c \ @@ -194,6 +194,9 @@ $(OBJDIR)/sokoban.o: $(RECDIR)/sokoban.c $(OBJDIR)/bounce.o: $(RECDIR)/bounce.c $(CC) $(APPCFLAGS) -c $< -o $@ +$(OBJDIR)/snake.o: $(RECDIR)/snake.c + $(CC) $(APPCFLAGS) -c $< -o $@ + $(OBJDIR)/snow.o: $(RECDIR)/snow.c $(CC) $(APPCFLAGS) -c $< -o $@ |