diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-09-17 21:54:47 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-09-17 21:54:47 +0000 |
| commit | 808519ed69ca6121bfb2d82266c570e88132e271 (patch) | |
| tree | e7aa1af1c69c03a732bf1a507589d9a3da38c181 | |
| parent | 8d47c5c32951b17ef1efd1ad94c4ab559dc7ab4b (diff) | |
| download | rockbox-808519ed69ca6121bfb2d82266c570e88132e271.zip rockbox-808519ed69ca6121bfb2d82266c570e88132e271.tar.gz rockbox-808519ed69ca6121bfb2d82266c570e88132e271.tar.bz2 rockbox-808519ed69ca6121bfb2d82266c570e88132e271.tar.xz | |
Fix reds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2319 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/Makefile | 6 | ||||
| -rw-r--r-- | uisimulator/x11/Makefile | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile index 1dfa881..c3a585e 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -64,7 +64,8 @@ FIRMSRCS = lcd.c power.c sprintf.c id3.c usb.c \ mpeg.c powermgmt.c font.c loadfont.c X5x8.c APPS = main.c tree.c menu.c credits.c main_menu.c icons.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 \ + lang.c MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c @@ -160,6 +161,9 @@ $(OBJDIR)/playlist.o: $(APPDIR)/playlist.c $(OBJDIR)/showtext.o: $(APPDIR)/showtext.c $(CC) $(APPCFLAGS) -c $< -o $@ +$(OBJDIR)/lang.o: $(APPDIR)/lang.c + $(CC) $(APPCFLAGS) -c $< -o $@ + $(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c $(CC) $(APPCFLAGS) -c $< -o $@ diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index 9bebeac..2f74394 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -80,7 +80,8 @@ FIRMSRCS = lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\ powermgmt.c font.c X5x8.c loadfont.c panic.c APPS = main.c tree.c menu.c credits.c main_menu.c\ - playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c + playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c \ + lang.c MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c @@ -213,6 +214,9 @@ $(OBJDIR)/playlist.o: $(APPDIR)/playlist.c $(OBJDIR)/showtext.o: $(APPDIR)/showtext.c $(CC) $(APPCFLAGS) -c $< -o $@ +$(OBJDIR)/lang.o: $(APPDIR)/lang.c + $(CC) $(APPCFLAGS) -c $< -o $@ + $(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c $(CC) $(CFLAGS) -c $< -o $@ |