#---------------------------------------------- # user makefile to use with Arduino.mk #---------------------------------------------- # Name of the final binary TARGET=basic # usr sources: # - bundle of c/cpp files # can be anywhere # - warning: extensions must be .c or .cc/.cpp (c++) USR_SRCS= \ basic.cpp # Thinks that can be customized USR_CPP_FLAGS= USR_CC_FLAGS= USR_INCLS=-I./objs # target can be: # compile # upload # clean all: compile # Generic makefile ARDUINO_BOARD=SBC include ../utils/Arduino.mk