#-----------------------------------------------
# setup variables
# ----------------------------------------------

SDK_ROOT := $(abspath ../../../..)

CHIP := K64F12
#-----------------------------------------------
# Debug or not
# Release by default.
#-----------------------------------------------
build ?= release

#-----------------------------------------------
# Choose the float point method.
# K64F12 can use: NO_FP, SOFT_FP and HARD_FP.
#-----------------------------------------------
CHOOSE_FLOAT = NO_FP

include $(SDK_ROOT)/mk/common.mk

include $(SDK_ROOT)/platform/hal/subdir.mk

#-----------------------------------------------
# The name of this lib
#-----------------------------------------------
LIB_NAME = hal_lib

include $(SDK_ROOT)/mk/targets.mk

