summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/Makefile3
-rw-r--r--firmware/Makefile4
-rwxr-xr-xtools/configure8
-rw-r--r--uisimulator/win32/Makefile1
-rw-r--r--uisimulator/x11/Makefile4
5 files changed, 8 insertions, 12 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 5913faf3bf..07b093eb40 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -41,9 +41,6 @@ ifeq ($(TARGET),-DARCHOS_RECORDER)
41 SRC += $(wildcard recorder/*.c) 41 SRC += $(wildcard recorder/*.c)
42 CFLAGS += -Irecorder 42 CFLAGS += -Irecorder
43 OUTNAME = ajbrec.ajz 43 OUTNAME = ajbrec.ajz
44ifneq (LOADABLE_FONTS,$(findstring LOADABLE_FONTS, $(CFLAGS)))
45 CFLAGS += -DLCD_PROPFONTS
46endif
47else 44else
48 OUTNAME = archos.mod 45 OUTNAME = archos.mod
49endif 46endif
diff --git a/firmware/Makefile b/firmware/Makefile
index 252b1ea70b..24f5b46614 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -41,10 +41,6 @@ OUTPUT = $(OBJDIR)/librockbox.a
41 41
42ifeq (LOADABLE_FONTS,$(findstring LOADABLE_FONTS, $(CFLAGS))) 42ifeq (LOADABLE_FONTS,$(findstring LOADABLE_FONTS, $(CFLAGS)))
43 EXTRA_TARGETS = $(OBJDIR)/system.ajf 43 EXTRA_TARGETS = $(OBJDIR)/system.ajf
44else
45ifeq ($(TARGET),-DARCHOS_RECORDER)
46 CFLAGS += -DLCD_PROPFONTS
47endif
48endif 44endif
49 45
50all: $(OUTPUT) $(EXTRA_TARGETS) 46all: $(OUTPUT) $(EXTRA_TARGETS)
diff --git a/tools/configure b/tools/configure
index cc13e94268..d57723eff9 100755
--- a/tools/configure
+++ b/tools/configure
@@ -190,7 +190,15 @@ if [ "-" = "$extra_defines" ]; then
190 extra_defines="-DLOADABLE_FONTS" 190 extra_defines="-DLOADABLE_FONTS"
191 echo "*** Remember to copy the 'system.ajf' file to the root of your Archos!" 191 echo "*** Remember to copy the 'system.ajf' file to the root of your Archos!"
192 else 192 else
193 echo "Proportional font support? (N)"
194
195 getit=`input`;
196
197 if [ "y" = "$getit" -o "Y" = "$getit" ] ; then
198 extra_defines="-DLCD_PROPFONTS"
199 else
193 extra_defines="" 200 extra_defines=""
201 fi
194 fi 202 fi
195 else 203 else
196 extra_defines="" 204 extra_defines=""
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index a45a4a6be6..92fdf2184b 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -62,7 +62,6 @@ APPS = main.c tree.c menu.c credits.c main_menu.c\
62MENUS = games_menu.c screensavers_menu.c settings_menu.c sound_menu.c 62MENUS = games_menu.c screensavers_menu.c settings_menu.c sound_menu.c
63 63
64ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 64ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
65 DEFINES += -DLCD_PROPFONTS
66 APPS += tetris.c sokoban.c blank.c bounce.c boxes.c icons.c bmp.c \ 65 APPS += tetris.c sokoban.c blank.c bounce.c boxes.c icons.c bmp.c \
67 widgets.c wormlet.c 66 widgets.c wormlet.c
68endif 67endif
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index f5856aa65b..6b778f4212 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -75,10 +75,6 @@ ifeq (LOADABLE_FONTS,$(findstring LOADABLE_FONTS, $(DEFINES)))
75 FIRMSRCS += unicode.c ajf.c panic.c 75 FIRMSRCS += unicode.c ajf.c panic.c
76 EXTRA_TARGETS = $(OBJDIR)/archos/system.ajf 76 EXTRA_TARGETS = $(OBJDIR)/archos/system.ajf
77 SYSTEM_FONT = $(FIRMWAREDIR)/fonts/alt6x10.bdf 77 SYSTEM_FONT = $(FIRMWAREDIR)/fonts/alt6x10.bdf
78else
79ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
80 DEFINES += -DLCD_PROPFONTS
81endif
82endif 78endif
83 79
84APPS = main.c tree.c menu.c credits.c main_menu.c\ 80APPS = main.c tree.c menu.c credits.c main_menu.c\