summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-08-28 06:42:43 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-08-28 06:42:43 +0000
commit8ef71bafff0ad16a2d856e68b127a43a3e6a2e99 (patch)
treeae76db9f82bae151473cb1aaeafe43b8f9036ba6
parentdb22700d326a10b284046fbee78a2191e84b28b6 (diff)
downloadrockbox-8ef71bafff0ad16a2d856e68b127a43a3e6a2e99.zip
rockbox-8ef71bafff0ad16a2d856e68b127a43a3e6a2e99.tar.gz
rockbox-8ef71bafff0ad16a2d856e68b127a43a3e6a2e99.tar.bz2
rockbox-8ef71bafff0ad16a2d856e68b127a43a3e6a2e99.tar.xz
Made LCD_PROPFONTS and LOADABLE_FONTS mutually exclusive
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2020 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index e4932df..5913faf 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -39,8 +39,11 @@ SRC := $(wildcard *.c)
ifeq ($(TARGET),-DARCHOS_RECORDER)
SRC += $(wildcard recorder/*.c)
- CFLAGS += -Irecorder -DLCD_PROPFONTS
+ CFLAGS += -Irecorder
OUTNAME = ajbrec.ajz
+ifneq (LOADABLE_FONTS,$(findstring LOADABLE_FONTS, $(CFLAGS)))
+ CFLAGS += -DLCD_PROPFONTS
+endif
else
OUTNAME = archos.mod
endif