summaryrefslogtreecommitdiff
path: root/apps
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 /apps
parentdb22700d326a10b284046fbee78a2191e84b28b6 (diff)
downloadrockbox-8ef71bafff0ad16a2d856e68b127a43a3e6a2e99.tar.gz
rockbox-8ef71bafff0ad16a2d856e68b127a43a3e6a2e99.zip
Made LCD_PROPFONTS and LOADABLE_FONTS mutually exclusive
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2020 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index e4932dfa36..5913faf3bf 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -39,8 +39,11 @@ SRC := $(wildcard *.c)
39 39
40ifeq ($(TARGET),-DARCHOS_RECORDER) 40ifeq ($(TARGET),-DARCHOS_RECORDER)
41 SRC += $(wildcard recorder/*.c) 41 SRC += $(wildcard recorder/*.c)
42 CFLAGS += -Irecorder -DLCD_PROPFONTS 42 CFLAGS += -Irecorder
43 OUTNAME = ajbrec.ajz 43 OUTNAME = ajbrec.ajz
44ifneq (LOADABLE_FONTS,$(findstring LOADABLE_FONTS, $(CFLAGS)))
45 CFLAGS += -DLCD_PROPFONTS
46endif
44else 47else
45 OUTNAME = archos.mod 48 OUTNAME = archos.mod
46endif 49endif