diff options
| author | Heikki Hannikainen <hessuh@rockbox.org> | 2002-08-07 11:45:42 +0000 |
|---|---|---|
| committer | Heikki Hannikainen <hessuh@rockbox.org> | 2002-08-07 11:45:42 +0000 |
| commit | 7232940fd5e0821e44905ab9e9dd3f9e90ea6d62 (patch) | |
| tree | 54c5700f05dce87e3d7d5861c162e05a6680a4b4 | |
| parent | aa5d5f0c7e67a685a62ae552962a0668b78ceab4 (diff) | |
| download | rockbox-7232940fd5e0821e44905ab9e9dd3f9e90ea6d62.zip rockbox-7232940fd5e0821e44905ab9e9dd3f9e90ea6d62.tar.gz rockbox-7232940fd5e0821e44905ab9e9dd3f9e90ea6d62.tar.bz2 rockbox-7232940fd5e0821e44905ab9e9dd3f9e90ea6d62.tar.xz | |
fix compiling (battery_level again)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1591 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile index 4cdcef3..24ca458 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -60,7 +60,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall FIRMSRCS = chartables.c lcd.c power.c sprintf.c id3.c backlight.c usb.c \ - mpeg.c + mpeg.c powermgmt.c APPS = main.c tree.c menu.c credits.c main_menu.c\ playlist.c showtext.c wps.c settings.c status.c @@ -161,6 +161,9 @@ $(OBJDIR)/chartables.o: $(FIRMWAREDIR)/chartables.c $(OBJDIR)/usb.o: $(FIRMWAREDIR)/usb.c $(CC) $(APPCFLAGS) -c $< -o $@ +$(OBJDIR)/powermgmt.o: $(FIRMWAREDIR)/powermgmt.c + $(CC) $(APPCFLAGS) -c $< -o $@ + $(OBJDIR)/settings.o: $(APPDIR)/settings.c $(CC) $(APPCFLAGS) -c $< -o $@ |