summaryrefslogtreecommitdiff
path: root/uisimulator/win32/Makefile
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-09-23 11:17:52 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-09-23 11:17:52 +0000
commit86f9a8410b8cfe53b11ca10f4f6dbcc2440c0e97 (patch)
tree48a2555b17b1b485b9c5f8c1385296f6cdff2309 /uisimulator/win32/Makefile
parente0d60436b2ab01d02e577b2f4cd9c8967d74d635 (diff)
downloadrockbox-86f9a8410b8cfe53b11ca10f4f6dbcc2440c0e97.tar.gz
rockbox-86f9a8410b8cfe53b11ca10f4f6dbcc2440c0e97.zip
Split lcd driver into lcd-player and lcd-recorder. Player simulator still needs fixing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2370 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32/Makefile')
-rw-r--r--uisimulator/win32/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 382e71b886..bd4708ab6a 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -62,7 +62,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows
62 62
63APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows 63APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows
64 64
65FIRMSRCS = lcd.c power.c sprintf.c id3.c usb.c \ 65FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \
66 mpeg.c powermgmt.c font.c sysfont.c 66 mpeg.c powermgmt.c font.c sysfont.c
67 67
68APPS = main.c tree.c menu.c credits.c main_menu.c icons.c \ 68APPS = main.c tree.c menu.c credits.c main_menu.c icons.c \
@@ -166,8 +166,8 @@ $(OBJDIR)/lang.o: $(APPDIR)/lang/$(LANGUAGE).lang
166 $(TOOLSDIR)/genlang -p=$(OBJDIR)/lang $< 166 $(TOOLSDIR)/genlang -p=$(OBJDIR)/lang $<
167 $(CC) $(CFLAGS) -c $(OBJDIR)/lang.c -o $@ 167 $(CC) $(CFLAGS) -c $(OBJDIR)/lang.c -o $@
168 168
169$(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c 169$(OBJDIR)/lcd.o: $(DRIVERS)/lcd-recorder.c
170 $(CC) $(APPCFLAGS) -c $< -o $@ 170 $(CC) $(APPCFLAGS) -DHAVE_LCD_BITMAP -c $< -o $@
171 171
172$(OBJDIR)/power.o: $(DRIVERS)/power.c 172$(OBJDIR)/power.o: $(DRIVERS)/power.c
173 $(CC) $(APPCFLAGS) -c $< -o $@ 173 $(CC) $(APPCFLAGS) -c $< -o $@