21
21
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
22
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
23
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27
27
#_______________________________________________________________________________
30
# This is a general purpose makefile for use with Arduino hardware and
31
# software. It works with the arduino-1.0 release and requires that software
32
# to be downloaded separately (see http://arduino.cc/). To download the latest
33
# version of this makefile, visit the following website, where you can also
34
# find more information and documentation on it's use. The following text can
35
# only really be considered a reference to it's use.
37
# http://ed.am/dev/make/arduino-mk
39
# To install, it is suggested that you keep arduino.mk somewhere and either
40
# symlink to it or include it in your make files. I keep mine at
41
# ~/src/arduino.mk. You will need to alter the value of the ARDUINODIR
42
# variable (below) to be the path where you have unpacked the arduino software
45
# This makefile can be used as a drop-in replacement for the Arduino IDE's
46
# build system. Simply create a symlink to it under the name "Makefile" and
47
# run make (remembering to specify an ARDUINODIR and BOARD, as described
48
# below). You would create the symlink like like so:
50
# $ ln -s ~/src/arduino.mk Makefile
52
# The presence of a .ino or .pde file causes the arduino.mk to atuomatically
53
# determine va;ues for SOURCES, TARGET and LIBRARIES. Any .c, .cc and .cpp
54
# files in the project directory (or a "util" or "utility" subdirectory) are
55
# automatically included in the build and are scanned for libraries that have
58
# Alternatively, if you want to manually specify build variables, create a
59
# Makefile that defines SOURCES and LIBRARARIES and then includes arduino.mk.
60
# (There is no need to define TARGET). You will also be expected to provide a
61
# main() function, for example in main.cc, which may or may not duplicate the
62
# functionality of the default main() that calls init() and loop(). Here is an
65
# SOURCES := main.cc foo.cc
67
# include ~/src/arduino.mk
69
# A complete list of all the settings you can use in your Makefile follows
70
# shortly. It should be noted, however, that some variables are better
71
# specified in the environment (or on the command line) than in your Makefile.
72
# Specifically, the ARDUINODIR, BOARD and, if it is not automatically detected,
75
# When running make, you might want to specify the board and path to your
76
# installation of the arduino software, like this:
78
# $ export ARDUINODIR=~/opt/arduino
79
# $ export BOARD=pro5v
82
# For a list of available board types, run `make boards`.
84
# Here is a complete list of configuration parameters:
86
# ARDUINODIR The path where you have installed/unpacked the arduino software
87
# (from http://arduino.cc/)
89
# BOARD Specify a target board type.
30
# This is a general purpose makefile for use with Arduino (arduino.cc)
31
# hardware and software. It works with the arduino-1.0 release and
32
# requires that to be downloaded separately. It can be downloaded
33
# from http://ed.am/dev/make/arduino-makefile where you can also find
34
# more information and documentation on it's use. The following text
35
# can only really be considered a reference to it's use.
37
# There are two ways to use this file, an automatic mode and a manual
38
# mode. In automatic mode, you simply copy this makefile to your
39
# arduino project directory, rename it "Makefile" and type make. The
40
# project directory is expected to contain an .ino or .pde file, which
41
# will automatically be used automatically, along with any other .c,
42
# .cc or .cpp files in the project directory and any subdirectory
43
# named "utility". In this way, this makefile should act as a drop-in
44
# replacement for the Arduino IDE's build process and can build a
45
# project automatically from the files in a project directory.
47
# Alternatively, you can manually specify what files should be
48
# inclided in a build. To use this makefile manually, you might be
49
# better to keep it somewhere and include it in your project's
50
# Makefile after having defined certain parameters that control the
51
# build. As an example, consider the following Makefile:
54
# SOURCES = main.cc foo.cc
56
# SERIALDEV = /dev/ttyACM0
57
# include ~/src/arduino.mk
59
# In both manual and automatic modes, the standard Arduino main.cpp's
60
# main() is included, which expects to be able to call init() and
61
# loop() in your code. The main difference is that, in manual mode,
62
# these would typically be placed in a .cc or .cpp file.
64
# When using manual mode, the following variables can be used:
66
# TARGET The name of the target file. This is typically the same name
67
# as the project directory for an arduino project and, if
68
# unspecified, that is used as a default.
70
# SOURCES A list of all source files of whatever language. The language
71
# type is determined by the file extension.
73
# BOARD Specify a target board type. These are defined in boards.txt,
74
# which came with your arduino installation. If unspecified,
75
# a default is used. (See below).
91
77
# SERIALDEV The unix device of the device where the arduino can be found.
92
# If unspecified, an attempt is made to determine the name of a
93
# connected arduino's serial device.
95
# TARGET The name of the target file. This is set automatically if a
96
# .ino or .pde is found, but it is not neccesary to set it
99
# SOURCES A list of all source files of whatever language. The language
100
# type is determined by the file extension. This is set
101
# automatically if a .ino or .pde is found.
103
# LIBRARIES A list of arduino libraries to build and include. This is set
104
# automatically if a .ino or .pde is found.
106
# This general-purpose makefile also defines the following goals for
107
# use on the command line when you run make:
78
# If unspecified, a default is used. (See below).
80
# This general-purpose makefile also defines the following goals for use on the
81
# command line when you run make:
109
83
# all This is the default if no goal is specified. It builds the
110
84
# target and uploads it.
116
90
# clean Deletes temporary files.
118
# boards Display a list of available board names, so that you can set the
119
# BOARD environment variable appropriately.
121
# monitor Start `screen` on the serial device. It is ment to be an
122
# equivelant to the arduino serial monitor.
124
92
# <file> Builds the specified file, either an object file or the target,
125
93
# from those that that would be built for the project.
126
95
#_______________________________________________________________________________
129
98
# The full path to the arduino software, from arduino.cc
131
ARDUINODIR := $(wildcard ~/opt/arduino)
134
# check arduino software
135
ifeq ($(wildcard $(ARDUINODIR)/hardware/arduino/boards.txt), )
136
$(error ARDUINODIR is not set correctly; arduino software not found)
99
ARDUINODIR := $(wildcard ~/opt/arduino-1.0)
101
# The board name to build for and upload to. For a complete list of available
102
# boards, see hardware/arduino/boards.txt in your arduino software directory.
103
# Here is a list of available boards at time of writing:
105
# atmega328 Arduino Duemilanove w/ ATmega328
106
# diecimila Arduino Diecimila or Duemilanove w/ ATmega168
107
# nano328 Arduino Nano w/ ATmega328
108
# nano Arduino Nano w/ ATmega168
109
# mega2560 Arduino Mega 2560 or Mega ADK
110
# mega Arduino Mega (ATmega1280)
111
# mini328 Arduino Mini w/ ATmega328
112
# mini Arduino Mini w/ ATmega168
114
# bt328 Arduino BT w/ ATmega328
115
# bt Arduino BT w/ ATmega168
116
# lilypad328 LilyPad Arduino w/ ATmega328
117
# lilypad LilyPad Arduino w/ ATmega168
118
# pro5v328 Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega328
119
# pro5v Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega168
120
# pro328 Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega328
121
# pro Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega168
122
# atmega168 Arduino NG or older w/ ATmega168
123
# atmega8 Arduino NG or older w/ ATmega8
128
# The name of the serial device that the arduino is at. For example,
129
# /dev/ttyACM0 (Uno), or /dev/ttyUSB0 (Duemilanove)
131
SERIALDEV := /dev/ttyACM0
134
#_______________________________________________________________________________
140
138
INOFILE := $(wildcard *.ino *.pde)
142
140
ifneq ($(words $(INOFILE)), 1)
143
$(error There is more than one .pde or .ino file in this directory!)
141
$(error There is more than one .pde or .ino file in the directory!)
145
143
TARGET := $(basename $(INOFILE))
146
144
SOURCES := $(INOFILE) \
147
$(wildcard *.c *.cc *.cpp) \
148
$(wildcard $(addprefix util/, *.c *.cc *.cpp)) \
149
$(wildcard $(addprefix utility/, *.c *.cc *.cpp))
150
# automatically determine included libraries
151
ARDUINOLIBSAVAIL := $(notdir $(wildcard $(ARDUINODIR)/libraries/*))
152
LIBRARIES := $(filter $(ARDUINOLIBSAVAIL), \
153
$(shell sed -ne "s/^ *\# *include *[<\"]\(.*\)\.h[>\"]/\1/p" $(SOURCES)))
156
# no target? use default
161
# no serial device? attempt to detect an arduino
163
SERIALDEV := $(firstword $(wildcard /dev/ttyACM? /dev/ttyUSB?))
166
# no board? oh dear...
168
ifneq "$(MAKECMDGOALS)" "boards"
169
ifneq "$(MAKECMDGOALS)" "clean"
170
$(error BOARD is unset. Type 'make boards' to see possible values)
145
$(wildcard *.c *.cc *.cpp $(addprefix utility/, *.c *.cc *.cpp))
176
149
OBJECTS := $(addsuffix .o, $(basename $(SOURCES)))
177
153
ARDUINOSRCDIR := $(ARDUINODIR)/hardware/arduino/cores/arduino
178
154
ARDUINOLIB := _arduino.a
179
155
ARDUINOLIBTMP := _arduino.a.tmp
180
ARDUINOLIBOBJS := $(patsubst %, $(ARDUINOLIBTMP)/%.o, $(basename $(notdir \
181
$(wildcard $(addprefix $(ARDUINOSRCDIR)/, *.c *.cpp)))))
182
ARDUINOLIBOBJS += $(foreach lib, $(LIBRARIES), \
183
$(patsubst %, $(ARDUINOLIBTMP)/%.o, $(basename $(notdir \
184
$(wildcard $(addprefix $(ARDUINODIR)/libraries/$(lib)/, *.c *.cpp))))))
156
ARDUINOSOURCES := $(wildcard $(addprefix $(ARDUINOSRCDIR)/, *.c *.cpp))
157
ARDUINOOBJECTS := $(addsuffix .o, $(addprefix $(ARDUINOLIBTMP)/, $(basename \
158
$(subst $(ARDUINOSRCDIR)/,,$(ARDUINOSOURCES)))))
186
160
# obtain board parameters from the arduino boards.txt file
187
161
BOARDS_FILE := $(ARDUINODIR)/hardware/arduino/boards.txt