diff options
Diffstat (limited to 'Common.mk')
-rw-r--r-- | Common.mk | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -26,6 +26,7 @@ BSP ?= 2 GDEBUG ?= 0 DEBUG ?= 0 SILENT ?= 0 +LARGE ?= 1 CROSS = arm-none-eabi CC = ${CROSS}-gcc @@ -65,6 +66,10 @@ ifneq ($(GDEBUG),0) QFLAGS += -s -S endif +ifeq ($(LARGE),1) + CFLAGS += -DLARGE_LETTERS +endif + # Debugging Flag ifneq ($(DEBUG),0) CFLAGS += -DDEBUG |