diff options
author | Heikki Hannikainen <hessuh@rockbox.org> | 2002-08-07 11:28:04 +0000 |
---|---|---|
committer | Heikki Hannikainen <hessuh@rockbox.org> | 2002-08-07 11:28:04 +0000 |
commit | 96deb72425563c0f0049346ea4a0d37d04a16d61 (patch) | |
tree | 61c993a6d96221e2180ff72e04afbe44e1034ff8 | |
parent | c175548c04defafcb0d24722ff38fa70636b393d (diff) |
fix compiling after battery_level changes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1588 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | uisimulator/x11/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index e327a1cdb9..e64ae6f36c 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -73,7 +73,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall -FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c +FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.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 @@ -227,6 +227,9 @@ $(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c $(OBJDIR)/usb.o: $(FIRMWAREDIR)/usb.c $(CC) $(CFLAGS) -c $< -o $@ +$(OBJDIR)/powermgmt.o: $(FIRMWAREDIR)/powermgmt.c + $(CC) $(CFLAGS) -c $< -o $@ + $(OBJDIR)/stubs.o: ../common/stubs.c $(CC) $(CFLAGS) -c $< -o $@ |