X-Git-Url: http://rtime.felk.cvut.cz/gitweb/arc.git/blobdiff_plain/07bbcb79799c461e4dc58be060a0c3e01f466c97..60966c493db6916acb0f8d9beaa9c1e77c206ef2:/boards/ti_tms570ls/examples/tms570_hdk_can/makefile diff --git a/boards/ti_tms570ls/examples/tms570_hdk_can/makefile b/boards/ti_tms570ls/examples/tms570_hdk_can/makefile new file mode 100644 index 00000000..b85d4e79 --- /dev/null +++ b/boards/ti_tms570ls/examples/tms570_hdk_can/makefile @@ -0,0 +1,30 @@ + +# Project name, used for output files et.c. +PROJECTNAME = com_simple_mpc5516it + +ROOTDIR?=../../../.. + +# Default settings +include $(ROOTDIR)/scripts/project_defaults.mk + +# Project files (adds all .c files in project root) +PROJECT_C_FILES=$(notdir $(wildcard ../*.c)) +obj-y += $(PROJECT_C_FILES:%.c=%.o) + + +#################### Arctic Core make system ###################### +# Following is an explanation of the most usable features +# of the Arctic Core make system. +# +# obj-y : list of object files to build. +# VPATH : list of directories in which to +# look for source files. +# inc-y : list of directories in which to +# look for header files. +# libitem-y : list of libraries to include. +# build-exe-y : the name of build the output file. +# ldcmdfile-y: path to linkscript, used when building "build-exe-y" +# +# For more information see: +# http://arccore.com/wiki/Makesystem +###################################################################