#
# ScatterWeb Application Makefile
#

###############################################################################
# Configuration
#

# Relative path to ScatterWeb root dir (contains System, Applications, Libraries folders)
SYSROOT 	:= ../..

# Name of the application and output files
APPNAME		:= AccTest

# Configuration defines
# DEFINES := "DEBUGLOG_LEVEL=(DEBUG_RADIO | VERBOSE)"

# Libraries to include in build (defaults to scatterweb CC1020)
LIBRARIES     := scatterweb CC1020 SensorBoard

# Compiler optimization level (defaults to s)
# OPTIMIZELEVEL := s

# Additional include directories
# INCLUDES	:= 

# Additional compiler flags (default is -fno-defer-pop)
#CFLAGS		:= -fno-defer-pop

# Addtional linker flags
# LFLAGS	:= 

###############################################################################
# Note: This has to be a relative path since include does not work easily with
#       spaces in the path
include $(SYSROOT)/System/makefile.application
