diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-08-26 09:21:59 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-08-26 09:21:59 +0000 |
commit | e67958ba8665655ffb16b2358a82a64c56403912 (patch) | |
tree | 10db4a339ef013becc91058f84f11b5c786ce00f /uisimulator/win32/Makefile | |
parent | f8c87e6c508f34d783272370ef7de92b480147da (diff) |
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/win32/Makefile')
-rw-r--r-- | uisimulator/win32/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile index 21bd09ea90..7282afdc24 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -68,7 +68,8 @@ APPS = main.c tree.c menu.c credits.c main_menu.c\ MENUS = games_menu.c screensavers_menu.c settings_menu.c sound_menu.c ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) - APPS += tetris.c sokoban.c blank.c bounce.c boxes.c icons.c bmp.c widgets.c + APPS += tetris.c sokoban.c blank.c bounce.c boxes.c icons.c bmp.c \ + widgets.c wormlet.c endif SRCS = button.c dir-win32.c lcd-win32.c panic-win32.c thread-win32.c \ @@ -122,6 +123,9 @@ $(OBJDIR)/widgets.o: $(RECDIR)/widgets.c $(OBJDIR)/tetris.o: $(RECDIR)/tetris.c $(CC) $(APPCFLAGS) -c $< -o $@ +$(OBJDIR)/wormlet.o: $(RECDIR)/wormlet.c + $(CC) $(APPCFLAGS) -c $< -o $@ + $(OBJDIR)/sokoban.o: $(RECDIR)/sokoban.c $(CC) $(APPCFLAGS) -c $< -o $@ |