diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-09-24 17:22:12 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-09-24 17:22:12 +0000 |
commit | b1b8bd4dd159e90f9e197c8870953da079162639 (patch) | |
tree | 27238f1b5a1535de0604e423ca91236bb3e2f833 /uisimulator/win32 | |
parent | c909b4b42e88a8e797e58a5e3e5ecf3716ae4783 (diff) |
Moved on_screen, f2_screen, f3_screen and handle_usb (renamed usb_screen) to a new file: screens.c.
typedef Menu replaced with a bool.
All code now calls usb_screen() for usb handling.
Nearly all code now deals with USB connect/disconnect properly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2401 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32')
-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 226bab10ef..2dc45ebdc5 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -66,7 +66,8 @@ FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \ mpeg.c powermgmt.c font.c sysfont.c APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ - playlist.c showtext.c wps.c wps-display.c settings.c status.c + playlist.c showtext.c wps.c wps-display.c settings.c status.c \ + screens.c MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c @@ -197,6 +198,9 @@ $(OBJDIR)/sysfont.o: $(FIRMWAREDIR)/fonts/clR6x8.bdf $(OBJDIR)/status.o: $(APPDIR)/status.c $(CC) $(APPCFLAGS) -c $< -o $@ +$(OBJDIR)/screens.o: $(APPDIR)/screens.c + $(CC) $(APPCFLAGS) -c $< -o $@ + $(OBJDIR)/version.o: $(FIRMWAREDIR)/version.c $(CC) $(CFLAGS) -c $< -o $@ |