summaryrefslogtreecommitdiff
path: root/uisimulator/x11/Makefile
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-09-12 13:33:59 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-09-12 13:33:59 +0000
commit93b231c69366563ba441dc4907bfb036fe3b4c55 (patch)
tree0783ad028211f59e63925a354e4260a7209ffa24 /uisimulator/x11/Makefile
parent5ed78ea80cdaa0ede4df89568f0781fa477a5738 (diff)
downloadrockbox-93b231c69366563ba441dc4907bfb036fe3b4c55.tar.gz
rockbox-93b231c69366563ba441dc4907bfb036fe3b4c55.zip
Greg Haerr's new loadable font. No more #ifdef font-style, removed old
propfont and loadable font code. New font file format. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2269 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/Makefile')
-rw-r--r--uisimulator/x11/Makefile30
1 files changed, 20 insertions, 10 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index d2b109e443..c6f86d40ad 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -76,13 +76,8 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
76 76
77APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall 77APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall
78 78
79FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c powermgmt.c 79FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\
80 80 powermgmt.c font.c X5x8.c loadfont.c panic.c
81ifeq (LOADABLE_FONTS,$(findstring LOADABLE_FONTS, $(DEFINES)))
82 FIRMSRCS += unicode.c ajf.c panic.c
83 EXTRA_TARGETS = $(OBJDIR)/archos/system.ajf
84 SYSTEM_FONT = $(FIRMWAREDIR)/fonts/alt6x10.bdf
85endif
86 81
87APPS = main.c tree.c menu.c credits.c main_menu.c\ 82APPS = main.c tree.c menu.c credits.c main_menu.c\
88 playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c 83 playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c
@@ -110,9 +105,6 @@ clean:
110 $(RM) $(OBJS) *~ core $(TARGET) $(CLIENTS) 105 $(RM) $(OBJS) *~ core $(TARGET) $(CLIENTS)
111 $(RM) -r $(DEPS) 106 $(RM) -r $(DEPS)
112 107
113$(OBJDIR)/archos/system.ajf: $(TOOLSDIR)/bdf2ajf $(SYSTEM_FONT)
114 $(TOOLSDIR)/bdf2ajf -f $(SYSTEM_FONT) -o $(OBJDIR)/archos/system.ajf
115
116distclean: clean 108distclean: clean
117 $(RM) config.cache 109 $(RM) config.cache
118 110
@@ -227,6 +219,24 @@ $(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c
227$(OBJDIR)/chartables.o: $(FIRMWAREDIR)/chartables.c 219$(OBJDIR)/chartables.o: $(FIRMWAREDIR)/chartables.c
228 $(CC) $(APPCFLAGS) -c $< -o $@ 220 $(CC) $(APPCFLAGS) -c $< -o $@
229 221
222$(OBJDIR)/X5x8.o: $(FIRMWAREDIR)/X5x8.c
223 $(CC) $(APPCFLAGS) -c $< -o $@
224
225$(OBJDIR)/X6x9.o: $(FIRMWAREDIR)/X6x9.c
226 $(CC) $(APPCFLAGS) -c $< -o $@
227
228$(OBJDIR)/timR08.o: $(FIRMWAREDIR)/timR08.c
229 $(CC) $(APPCFLAGS) -c $< -o $@
230
231$(OBJDIR)/courB08.o: $(FIRMWAREDIR)/courB08.c
232 $(CC) $(APPCFLAGS) -c $< -o $@
233
234$(OBJDIR)/font.o: $(FIRMWAREDIR)/font.c
235 $(CC) $(APPCFLAGS) -c $< -o $@
236
237$(OBJDIR)/loadfont.o: $(FIRMWAREDIR)/loadfont.c
238 $(CC) $(APPCFLAGS) -c $< -o $@
239
230$(OBJDIR)/settings.o: $(APPDIR)/settings.c 240$(OBJDIR)/settings.o: $(APPDIR)/settings.c
231 $(CC) $(APPCFLAGS) -c $< -o $@ 241 $(CC) $(APPCFLAGS) -c $< -o $@
232 242