Skip to content

Commit b322229

Browse files
committed
Update Makefiles for macOS
1 parent 3c3bb5a commit b322229

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

generic/Makefile-OSX.mk

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PROJECT_DIR = ..
1010

1111
### AVR_TOOLS_DIR
1212
### Path to the AVR tools directory such as avr-gcc, avr-g++, etc.
13-
AVR_TOOLS_DIR = /opt/local
13+
AVR_TOOLS_DIR = /usr/local
1414
#AVR_TOOLS_DIR = /Applications/Arduino.app/Contents/Resources/Java/hardware/tools/avr
1515

1616
### AVR_GCC_VERSION
@@ -23,26 +23,26 @@ ARDMK_DIR = $(PROJECT_DIR)/tools/Arduino-Makefile
2323

2424
### ARDUINO_DIR
2525
### Path to the Arduino application and ressources directory.
26-
### For Arduino IDE 1.0.x
27-
ARDUINO_DIR = /Applications/Arduino.app/Contents/Resources/Java
28-
### For Arduino IDE 1.6.x
29-
# ARDUINO_DIR = /Applications/Arduino.app/Contents/Java
26+
### For Arduino 1.0.x
27+
# ARDUINO_DIR = /Applications/Arduino.app/Contents/Resources/Java
28+
### For Arduino 1.6.x and 1.8.x
29+
ARDUINO_DIR = /Applications/Arduino.app/Contents/Java
3030

3131
### USER_LIB_PATH
3232
### Path to where the your project's libraries are stored.
3333
USER_LIB_PATH := $(realpath $(PROJECT_DIR)/libraries)
3434

3535
### BOARD_TAG & BOARD_SUB
36-
### For Arduino IDE 1.0.x
36+
### For Arduino 1.0.x
3737
### Only BOARD_TAG is needed. It must be set to the board you are currently using. (i.e uno, mega2560, etc.)
3838
# BOARD_TAG = mega2560
39-
BOARD_TAG = pro328
39+
# BOARD_TAG = pro328
4040

41-
### For Arduino IDE 1.6.x
41+
### For Arduino 1.6.x and 1.8.x
4242
### Both BOARD_TAG and BOARD_SUB are needed. They must be set to the board you are currently using. (i.e BOARD_TAG = uno, mega, etc. & BOARD_SUB = atmega2560, etc.)
4343
### Note: for the Arduino Uno, only BOARD_TAG is mandatory and BOARD_SUB can be equal to anything
44-
#BOARD_TAG = uno
45-
#BOARD_SUB = atmega328p
44+
BOARD_TAG = uno
45+
BOARD_SUB = atmega328p
4646

4747
### MONITOR_BAUDRATE
4848
### It must be set to Serial baudrate value you are using.

libraries/BERadio/examples/message/Makefile-OSX.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PROJECT_DIR = ../../../..
1010

1111
### AVR_TOOLS_DIR
1212
### Path to the AVR tools directory such as avr-gcc, avr-g++, etc.
13-
AVR_TOOLS_DIR = /opt/local
13+
AVR_TOOLS_DIR = /usr/local
1414
#AVR_TOOLS_DIR = /Applications/Arduino.app/Contents/Resources/Java/hardware/tools/avr
1515

1616
### AVR_GCC_VERSION
@@ -24,9 +24,9 @@ ARDMK_DIR = $(PROJECT_DIR)/tools/Arduino-Makefile
2424
### ARDUINO_DIR
2525
### Path to the Arduino application and ressources directory.
2626
### For Arduino IDE 1.0.x
27-
ARDUINO_DIR = /Applications/Arduino.app/Contents/Resources/Java
27+
# ARDUINO_DIR = /Applications/Arduino.app/Contents/Resources/Java
2828
### For Arduino IDE 1.6.x
29-
# ARDUINO_DIR = /Applications/Arduino.app/Contents/Java
29+
ARDUINO_DIR = /Applications/Arduino.app/Contents/Java
3030

3131
### USER_LIB_PATH
3232
### Path to where the your project's libraries are stored.

node-rfm69-beradio/Makefile-OSX.mk

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PROJECT_DIR = ..
1010

1111
### AVR_TOOLS_DIR
1212
### Path to the AVR tools directory such as avr-gcc, avr-g++, etc.
13-
AVR_TOOLS_DIR = /opt/local
13+
AVR_TOOLS_DIR = /usr/local
1414
#AVR_TOOLS_DIR = /Applications/Arduino.app/Contents/Resources/Java/hardware/tools/avr
1515

1616
### AVR_GCC_VERSION
@@ -23,26 +23,26 @@ ARDMK_DIR = $(PROJECT_DIR)/tools/Arduino-Makefile
2323

2424
### ARDUINO_DIR
2525
### Path to the Arduino application and ressources directory.
26-
### For Arduino IDE 1.0.x
27-
ARDUINO_DIR = /Applications/Arduino.app/Contents/Resources/Java
28-
### For Arduino IDE 1.6.x
29-
# ARDUINO_DIR = /Applications/Arduino.app/Contents/Java
26+
### For Arduino 1.0.x
27+
# ARDUINO_DIR = /Applications/Arduino.app/Contents/Resources/Java
28+
### For Arduino 1.6.x and 1.8.x
29+
ARDUINO_DIR = /Applications/Arduino.app/Contents/Java
3030

3131
### USER_LIB_PATH
3232
### Path to where the your project's libraries are stored.
3333
USER_LIB_PATH := $(realpath $(PROJECT_DIR)/libraries)
3434

3535
### BOARD_TAG & BOARD_SUB
36-
### For Arduino IDE 1.0.x
36+
### For Arduino 1.0.x
3737
### Only BOARD_TAG is needed. It must be set to the board you are currently using. (i.e uno, mega2560, etc.)
3838
# BOARD_TAG = mega2560
39-
BOARD_TAG = pro328
39+
# BOARD_TAG = pro328
4040

41-
### For Arduino IDE 1.6.x
41+
### For Arduino 1.6.x and 1.8.x
4242
### Both BOARD_TAG and BOARD_SUB are needed. They must be set to the board you are currently using. (i.e BOARD_TAG = uno, mega, etc. & BOARD_SUB = atmega2560, etc.)
4343
### Note: for the Arduino Uno, only BOARD_TAG is mandatory and BOARD_SUB can be equal to anything
44-
#BOARD_TAG = uno
45-
#BOARD_SUB = atmega328p
44+
BOARD_TAG = uno
45+
BOARD_SUB = atmega328p
4646

4747
### MONITOR_BAUDRATE
4848
### It must be set to Serial baudrate value you are using.

0 commit comments

Comments
 (0)