/make/arduino-mk

To get this branch, use:
bzr branch http://bzr.ed.am/make/arduino-mk

« back to all changes in this revision

Viewing changes to arduino.mk

  • Committer: edam
  • Date: 2012-02-21 15:43:30 UTC
  • Revision ID: tim@ed.am-20120221154330-se8hali569whg99p
typos/spelling

Show diffs side-by-side

added added

removed removed

1
1
#_______________________________________________________________________________
2
2
#
3
 
#                         edam's arduino makefile
 
3
#                         edam's Arduino makefile
4
4
#_______________________________________________________________________________
5
5
#                                                                    version 0.3
6
6
#
44
44
#
45
45
# The Arduino software (version 1.0 or later) is required.  If you are using
46
46
# Debian (or a derivative), type `apt-get install arduino`.  Otherwise, you
47
 
# will have to download the arduino software manually from http://arduino.cc/.
 
47
# will have to download the Arduino software manually from http://arduino.cc/.
48
48
# It is suggested that you install it at ~/opt/arduino if you are unsure.
49
49
#
50
50
# If you downloaded the Arduino software manually and unpacked it somewhere
56
56
#   export ARDUINODIR=~/somewhere/arduino-1.0
57
57
#
58
58
# You will also need to set BOARD to the type of Arduino you're building for.
59
 
# You could set a default in your ~/.profile if you want, but it is suggested
60
 
# that you specify this at build time, especially if you work with different
61
 
# types of Arduino.  For example:
 
59
# Type `make boards` for a list of acceptable values.  You could set a default
 
60
# in your ~/.profile if you want, but it is suggested that you specify this at
 
61
# build time, especially if you work with different types of Arduino.  For
 
62
# example:
62
63
#
63
64
#   $ export BOARD=uno
64
65
#   $ make
91
92
#              is passed to avrdude (to the system default is used).
92
93
#
93
94
# AVRTOOLSPATH A space-separated list of directories to search in order when
94
 
#              lookin for the avr build tools. This defaults to the system PATH
 
95
#              looking for the avr build tools. This defaults to the system PATH
95
96
#              followed by subdirectories in ARDUINODIR if undefined.
96
97
#
97
98
# BOARD        Specify a target board type.  Run `make boards` to see available