diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-08-28 06:42:43 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-08-28 06:42:43 +0000 |
| commit | 8ef71bafff0ad16a2d856e68b127a43a3e6a2e99 (patch) | |
| tree | ae76db9f82bae151473cb1aaeafe43b8f9036ba6 /apps/Makefile | |
| parent | db22700d326a10b284046fbee78a2191e84b28b6 (diff) | |
| download | rockbox-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
Diffstat (limited to 'apps/Makefile')
| -rw-r--r-- | apps/Makefile | 5 |
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 |