Arduino Makefile Versions Save

Makefile for Arduino sketches. It defines the workflows for compiling code, flashing it to Arduino and even communicating through Serial.

1.6.0

6 years ago

This release adds support for Robotis OpenCM boards (contributed by @fuzzyTew)

In addition to that the following changes were also made

1.5

9 years ago

This release adds support for Arduino 1.5.x and 1.6.x IDE's

1.3.4

9 years ago

1.3.3

10 years ago

In this release we add the man page back to the debian package.

Huge thanks to @sej7278

1.3.2

10 years ago

This is a bug fix release and includes the following changes

1.3.0

10 years ago

1.3.1

10 years ago

1.2.0

10 years ago

This release fixes the git checkout vs package installation.

If you are installing using git checkout, then you have to remove the arduino-mk folder from your ARDMK_DIR variable.

Major credit goes to @sej7278

1.1.0

10 years ago
  • Don't append port details to avrdude for usbasp. See #123
  • Ignore commented lines while parsing boards.txt file. See #124
  • In ISP mode, read baudrate and programmer from boards.txt. See #125
  • Add burn_bootloader target. See #85
  • Show correct path to arduino.mk file in help message. Fix #120
  • Change echo for printf. Fix #129 (https://github.com/thomassigurdsen)
  • Add support for ChipKiT 2013. Fix #136 (https://github.com/peplin)
  • Auto detect and include libraries specified in USER_LIB_PATH. Fix #135 (https://github.com/tinyladi)
  • Use MAKEFILE_LIST to get the name of the make file. Fix #130 (https://github.com/cantora)
  • New: Add option to set fuses without burning a bootloader. Fix #141 (https://github.com/sej7278)
  • Tweak: Don't append port details to avrdude for usbtiny. Fix #140 and #138 (https://github.com/PPvG)
  • Fix: Handle relative paths of bootloader file while burning bootloaders. Fix #126 and #142 (https://github.com/sej7278)
  • New: Add CONTRIBUTING.md explaining how to contribute to the project.
  • New: Force -Os optimization for SoftwareSerial. Add OPTIMIZATION_FLAGS and DEBUG_FLAGS. (https://github.com/mahoy)
  • Fix: Use ARDUINO_HEADER variable instead of hardcoded file names. Fix #131