aboutsummaryrefslogtreecommitdiff
path: root/arduino-mk/Arduino.mk
AgeCommit message (Collapse)Author
2012-07-15Automatically read the BAUDRATE from sketch. Works only in linux for nowSudar
2012-07-14Don't include dependent makefile when doing make cleanSudar
2012-07-14Fixed line spacing and added doc block which got removed in the earlier commitSudar
2012-07-13Changed bytes option for the head shell command, so that it works in Mac as wellSudar
2012-07-13Updated ReadmeSudar
2012-07-13Merged changes from https://github.com/rpavlik/Arduino-MakefileSudar
2012-07-13Merged from https://github.com/gaftech/Arduino-Makefile/Sudar
2012-07-06modified 'make size' behaviourGabriel
2012-07-06allow user to choose source filesGabriel
2012-07-06Updated Readme and added the list of changes done in this forkSudar
2012-07-05Improved library finding logic.Ryan Pavlik
Look first in the user dir. Any not found there are sought in the system (Arduino) dir. If any are not found, error out right away with a useful message. Show all libraries and where they were found (user or system) in the config info.
2012-07-05rename functions to allow nicer output.Ryan Pavlik
This also lets us restore the non-overridable detection of avr-size type.
2012-07-05Simplify user and system librariesRyan Pavlik
2012-07-05Simplify finding arduino dirRyan Pavlik
2012-07-05Clarify by adding (space-based) indentation.Ryan Pavlik
Helps simplify understanding all the nested conditionals.
2012-07-05Less shell-based implementation of dir_if_existsRyan Pavlik
2012-07-05Clean up and improve displayed output.Ryan Pavlik
2012-07-05Add info about setting USER_LIB_PATH and ARDMK_DIR relative to source.Ryan Pavlik
2012-07-05Clarify where we actually look for libsRyan Pavlik
2012-07-05add the size and disasm targets to the docsRyan Pavlik
2012-07-05Fix typo in docsRyan Pavlik
2012-07-05Add autodetection caveat to docsRyan Pavlik
2012-07-05Remove duplicated section of documentation.Ryan Pavlik
2012-07-05Remove trailing spacesRyan Pavlik
2012-07-05Dump size at the end of the build.Ryan Pavlik
2012-07-05Deduce whether we have an avr-patched version of size, and use it.Ryan Pavlik
2012-07-05Autodetect arduino version when possibleRyan Pavlik
2012-07-03Add a disasm target to build the .lss file.Ryan Pavlik
2012-07-02Revert "Changed echo command to work on linux". Was having issues with ↵Sudar
Ubuntu and Mac This reverts commit 1e5d7c1a33955e70275f8f7e828498c98995590e.
2012-07-01modified 'make size' behaviourGabriel
2012-07-01allow user to choose source filesGabriel
2012-06-28Properly categorize libs into user and system automatically.Ryan Pavlik
2012-06-28Only use Arduino's bundled AVR tools if they exist, otherwise try using "which"Ryan Pavlik
2012-06-28Be able to autodetect ARDUINO_DIR in some casesRyan Pavlik
2012-06-23cleaner way to delete the build-cli directory when make clean is invokedSudar
2012-06-10Changed AVRDUDE_CONF so it can be defined in per-project makefileAdam Dunlap
2012-06-10Changed echo command to work on linuxAdam Dunlap
2012-06-09Replaced = with += in CPPFLAGS assignment so that we can set CPPFLAGS per ↵Sudar
sketch if needed
2012-05-12Added support for compiling .pde files in Arduino 1.0 environmentSudar
2012-05-05Delete the build-cli folder as well while doing make cleanSudar
2012-05-05Prevent the *file-not-found* error if the depends.mk file is not neededSudar
2012-04-29Rejig path calculations.\nMove reset target to Perl.\nMartin Oldfield
2012-04-29Added monitor target and AnalogInOutSerial exampleMartin Oldfield
2012-04-27Correct boards.txt now passed to ard-parse-boards.James Brotchie
PARSE_BOARD usage in Arduino.mk fixed to be PARSE_BOARD_CMD. --boards_txt= command line argument is now correctly passed into ard-parse-boards.
2012-04-27Add NO_CORE_MAIN_CPP flag to remove main.cpp, after PeplinMartin Oldfield
2012-04-26Added comment to changelogMartin Oldfield
2012-04-26Merge pull request #6 from peplin/sketchbook-librariesMartin Oldfield
Compile and include libraries from the sketchbook folder
2012-04-26Allow punter to specify boards.txt file independently of command (after ↵Martin Oldfield
Peplin on github)
2012-03-31Separate out user lib variables from sys lib counterparts for clarity.Christopher Peplin
2012-03-25Build user libraries from the sketchbook directory.Christopher Peplin