You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
320 B
Makefile
10 lines
320 B
Makefile
PRINTF_PATH = $(LIB_PATH)/printf
|
|
|
|
VPATH += $(PRINTF_PATH)
|
|
SRC += $(PRINTF_PATH)/printf.c
|
|
QUANTUM_SRC +=$(QUANTUM_DIR)/logging/print.c
|
|
OPT_DEFS += -DPRINTF_DISABLE_SUPPORT_FLOAT
|
|
OPT_DEFS += -DPRINTF_DISABLE_SUPPORT_EXPONENTIAL
|
|
OPT_DEFS += -DPRINTF_DISABLE_SUPPORT_LONG_LONG
|
|
OPT_DEFS += -DPRINTF_DISABLE_SUPPORT_PTRDIFF_T
|