From ae80ce16a98c82926bfc2bc524f7f7215a8994bb Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Sat, 9 May 2015 22:04:36 +1000 Subject: [PATCH 1/2] example: further spelling error fixes --- examples/MakefileExample/Makefile-example.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/MakefileExample/Makefile-example.mk b/examples/MakefileExample/Makefile-example.mk index a144bd6..4ef09c0 100644 --- a/examples/MakefileExample/Makefile-example.mk +++ b/examples/MakefileExample/Makefile-example.mk @@ -1,7 +1,7 @@ ### DISCLAIMER ### This is an example Makefile and it MUST be configured to suit your needs. -### For detailed explanations about all the avalaible options, -### please refer to https://github.com/sudar/Arduino-Makefile/blob/master/arduino-mk-vars.md +### For detailed explanations about all the available options, please refer +### to https://github.com/sudar/Arduino-Makefile/blob/master/arduino-mk-vars.md ### Original project where this Makefile comes from: https://github.com/WeAreLeka/Bare-Arduino-Project ### PROJECT_DIR @@ -13,7 +13,7 @@ PROJECT_DIR = /Users/MyUserName/path/to/my/Project ARDMK_DIR = $(PROJECT_DIR)/Arduino-Makefile ### ARDUINO_DIR -### Path to the Arduino application and ressources directory. +### Path to the Arduino application and resources directory. ### On OS X: ARDUINO_DIR = /Applications/Arduino.app/Contents/Resources/Java ### or on Linux: (remove the one you don't want) @@ -66,9 +66,9 @@ MONITOR_PORT = /dev/tty.usbmodem* CURRENT_DIR = $(shell basename $(CURDIR)) ### OBJDIR -### This is were you put the binaries you just compile using 'make' +### This is where you put the binaries you just compile using 'make' OBJDIR = $(PROJECT_DIR)/bin/$(BOARD_TAG)/$(CURRENT_DIR) -### path to Arduino.mk, inside the ARDMK_DIR, don't touch. +### Do not touch - the path to Arduino.mk, inside the ARDMK_DIR include $(ARDMK_DIR)/Arduino.mk From 0da1cb4b1fdeb4ad342f3d7d37b4195bb2042e4b Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Sat, 9 May 2015 22:25:10 +1000 Subject: [PATCH 2/2] example: "all of the" thanks @sej7278 --- examples/MakefileExample/Makefile-example.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/MakefileExample/Makefile-example.mk b/examples/MakefileExample/Makefile-example.mk index 4ef09c0..9b6a118 100644 --- a/examples/MakefileExample/Makefile-example.mk +++ b/examples/MakefileExample/Makefile-example.mk @@ -1,6 +1,6 @@ ### DISCLAIMER ### This is an example Makefile and it MUST be configured to suit your needs. -### For detailed explanations about all the available options, please refer +### For detailed explanations about all of the available options, please refer ### to https://github.com/sudar/Arduino-Makefile/blob/master/arduino-mk-vars.md ### Original project where this Makefile comes from: https://github.com/WeAreLeka/Bare-Arduino-Project