summaryrefslogtreecommitdiff
path: root/uisimulator/win32
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-17 15:52:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-17 15:52:10 +0000
commit37b0c075cf8007b6bece5e8eaaf9bfa4756273f1 (patch)
tree4dfe9d7bade04ef451947208002fa3d9480d63e1 /uisimulator/win32
parent058ec1305c74b4ef09a138e25339f0b96068853e (diff)
downloadrockbox-37b0c075cf8007b6bece5e8eaaf9bfa4756273f1.tar.gz
rockbox-37b0c075cf8007b6bece5e8eaaf9bfa4756273f1.zip
keyboard.c was missing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3125 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32')
-rw-r--r--uisimulator/win32/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index ff04098cc6..6e377a9ac6 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -75,7 +75,7 @@ FIRMSRCS = $(LCDSRSC) power.c sprintf.c id3.c usb.c \
75 75
76APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ 76APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \
77 playlist.c wps.c wps-display.c settings.c status.c \ 77 playlist.c wps.c wps-display.c settings.c status.c \
78 screens.c peakmeter.c viewer.c sleeptimer.c 78 screens.c peakmeter.c viewer.c sleeptimer.c keyboard.c
79 79
80MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c 80MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
81 81
@@ -140,6 +140,9 @@ $(OBJDIR)/icons.o: $(MACHINEDIR)/icons.c
140$(OBJDIR)/widgets.o: $(RECDIR)/widgets.c 140$(OBJDIR)/widgets.o: $(RECDIR)/widgets.c
141 $(CC) $(APPCFLAGS) -c $< -o $@ 141 $(CC) $(APPCFLAGS) -c $< -o $@
142 142
143$(OBJDIR)/keyboard.o: $(MACHINEDIR)/keyboard.c
144 $(CC) $(APPCFLAGS) -c $< -o $@
145
143$(OBJDIR)/tetris.o: $(RECDIR)/tetris.c 146$(OBJDIR)/tetris.o: $(RECDIR)/tetris.c
144 $(CC) $(APPCFLAGS) -c $< -o $@ 147 $(CC) $(APPCFLAGS) -c $< -o $@
145 148