#
# Defines the part type that this project uses.
#
PART=__MSP432P401R__

#
# The base directory for MSPWare.
#
ROOT=../../../..

#
# Include the common make definitions.
#
include ../../Makefile.defs

#
# Where to find header files that do not live in the source directory.
#
IPATH=../../../..
IPATH+=../../../../inc/
IPATH+=../../../../inc/CMSIS/
IPATH+=../../../../driverlib/MSP432P4xx

#
# The default rule, which causes the timera_continuous_vlo_period_capture example to be built.
#
all: ${COMPILER}
all: ${COMPILER}/timera_continuous_vlo_period_capture.axf

#
# The rule to clean out all the build products.
#
clean:
	@rm -rf ${COMPILER} ${wildcard *~}

#
# The rule to create the target directory.
#
${COMPILER}:
	@mkdir -p ${COMPILER}

#
# Rules for building the timera_continuous_vlo_period_capture example.
#
${COMPILER}/timera_continuous_vlo_period_capture.axf: ${COMPILER}/msp432_startup_${COMPILER}.o
${COMPILER}/timera_continuous_vlo_period_capture.axf: ${COMPILER}/timera_continuous_vlo_period_capture.o
${COMPILER}/timera_continuous_vlo_period_capture.axf: ${ROOT}/driverlib/MSP432P4xx/${COMPILER}/msp432p4xx_driverlib.a
${COMPILER}/timera_continuous_vlo_period_capture.axf: timera_continuous_vlo_period_capture_gcc.ld
SCATTERgcc_timera_continuous_vlo_period_capture=timera_continuous_vlo_period_capture_gcc.ld
ENTRY_timera_continuous_vlo_period_capture=ResetISR
CFLAGSgcc=-DTARGET_IS_MSP432P4XX

#
# Include the automatically generated dependency files.
#
ifneq (${MAKECMDGOALS},clean)
-include ${wildcard ${COMPILER}/*.d} __dummy__
endif
