summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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