summaryrefslogtreecommitdiff
path: root/uisimulator/x11/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/x11/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/x11/Makefile')
-rw-r--r--uisimulator/x11/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 3f9b999acb..a35778c931 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -77,7 +77,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
77 77
78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall 78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall
79 79
80FIRMSRCS = lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\ 80FIRMSRCS = lcd-recorder.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\
81 powermgmt.c font.c panic.c sysfont.c 81 powermgmt.c font.c panic.c sysfont.c
82 82
83APPS = main.c tree.c menu.c credits.c main_menu.c\ 83APPS = main.c tree.c menu.c credits.c main_menu.c\
@@ -218,8 +218,8 @@ $(OBJDIR)/lang.o: $(APPDIR)/lang/$(LANGUAGE).lang
218 $(TOOLSDIR)/genlang -p=$(OBJDIR)/lang $< 218 $(TOOLSDIR)/genlang -p=$(OBJDIR)/lang $<
219 $(CC) $(CFLAGS) -c $(OBJDIR)/lang.c -o $@ 219 $(CC) $(CFLAGS) -c $(OBJDIR)/lang.c -o $@
220 220
221$(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c 221$(OBJDIR)/lcd-recorder.o: $(DRIVERS)/lcd-recorder.c
222 $(CC) $(CFLAGS) -c $< -o $@ 222 $(CC) $(CFLAGS) -DHAVE_LCD_BITMAP -c $< -o $@
223 223
224$(OBJDIR)/sysfont.o: $(FIRMWAREDIR)/fonts/clR6x8.bdf 224$(OBJDIR)/sysfont.o: $(FIRMWAREDIR)/fonts/clR6x8.bdf
225 $(TOOLSDIR)/convbdf -c -o $(OBJDIR)/sysfont.c $< 225 $(TOOLSDIR)/convbdf -c -o $(OBJDIR)/sysfont.c $<