You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
496 B
20 lines
496 B
HERE:=$(dir $(lastword $(MAKEFILE_LIST)))
|
|
-include $(HERE)/build.conf
|
|
|
|
TARGET_LIB = libdizzy.a
|
|
FLASH_TARGET ?= main_testtone
|
|
DEBUG ?= 0
|
|
|
|
LIBDAISY_DIR ?= ../../heck_libDaisy
|
|
DAISYSP_DIR ?= ../../heck_DaisySP
|
|
|
|
CXX_STANDARD ?= -std=c++17
|
|
CXXFLAGS += -Wall -Wno-unused -Wno-reorder-ctor -Wno-switch
|
|
CXXFLAGS += \
|
|
-fdiagnostics-color=always \
|
|
-fmessage-length=170 \
|
|
-fdiagnostics-path-format=inline-events \
|
|
-fdiagnostics-show-template-tree \
|
|
|
|
#APP_TYPE ?= BOOT_NONE
|
|
LDFLAGS += -u_printf_float
|