# Point BB at the arduino-build script BB=/your/path/to/arduino-build # You shouldn't have to change any of these. .PHONY : compile clean upload monitor upmon build: $(BB) build clean: $(BB) clean upload: $(BB) upload monitor: $(BB) monitor upmon: upload monitor