diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-08-13 17:35:53 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-08-13 17:35:53 +0000 |
| commit | 69194656475631e6ef704fbeb8803cd5d10d1db4 (patch) | |
| tree | 91c304ed4a2a6291fe9b27d75bc112eb179a31a5 | |
| parent | b3572afb5fda31b1a5ccf5d917275cfadb118a3a (diff) | |
| download | rockbox-69194656475631e6ef704fbeb8803cd5d10d1db4.zip rockbox-69194656475631e6ef704fbeb8803cd5d10d1db4.tar.gz rockbox-69194656475631e6ef704fbeb8803cd5d10d1db4.tar.bz2 rockbox-69194656475631e6ef704fbeb8803cd5d10d1db4.tar.xz | |
Added stubs.c to win32 sim build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1720 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile index 84ff8c8..abd730c 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -59,8 +59,8 @@ 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 powermgmt.c +FIRMSRCS = chartables.c lcd.c power.c sprintf.c id3.c usb.c \ + mpeg.c powermgmt.c stubs.c APPS = main.c tree.c menu.c credits.c main_menu.c\ playlist.c showtext.c wps.c settings.c status.c @@ -72,7 +72,7 @@ ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) endif SRCS = button.c dir-win32.c lcd-win32.c panic-win32.c thread-win32.c \ - debug-win32.c kernel.c string-win32.c uisw32.c \ + debug-win32.c kernel.c string-win32.c uisw32.c stubs.c \ $(APPS) $(MENUS) $(FIRMSRCS) strtok.c OBJS := $(SRCS:%.c=$(OBJDIR)/%.o) $(OBJDIR)/uisw32-res.o @@ -188,9 +188,8 @@ $(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c $(OBJDIR)/strtok.o: $(COMMON)/strtok.c $(CC) $(APPCFLAGS) -c $< -o $@ -$(OBJDIR)/backlight.o: $(FIRMWAREDIR)/backlight.c - $(CC) $(APPCFLAGS) -c $< -o $@ - +$(OBJDIR)/stubs.o: ../common/stubs.c + $(CC) $(CFLAGS) -c $< -o $@ # these ones are simulator-specific |