/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-01-03 20:08:42 UTC
  • Revision ID: edam@waxworlds.org-20120103200842-mzqkg2bewooqxc2w
fixed comments for publishing

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
#
46
46
# This makefile can be used as a drop-in replacement for the Arduino
47
47
# IDE's build system.  Simply create a symlink to it under the name
48
 
# "Makefile" and run make (remembering to specify an ARDUINODIR and
49
 
# BOARD, as described below).  You would create the symlink like like
50
 
# so:
 
48
# "Makefile" and run make as described below (remembering to specify a
 
49
# BOARD).  You would create the symlink like like so:
51
50
#
52
51
#   $ ln -s ~/src/arduino.mk Makefile
53
52
#
71
70
#
72
71
# A complete list of all the settings you can use in your Makefile
73
72
# follows shortly.  It should be noted, however, that some variables
74
 
# are better specified in the environment (or on the command line)
75
 
# than in your Makefile.  Specifically, the ARDUINODIR, BOARD and, if
76
 
# it is not automatically detected, SERIALDEV.
77
 
#
78
 
# When running make, you might want to specify the board and path to
79
 
# your installation of the arduino software, like this:
80
 
#
81
 
#   $ export ARDUINODIR=~/opt/arduino-1.0
 
73
# are better specified in the environment or on the command line than
 
74
# in a Makefile.  Specifically, the BOARD and SERIALDEV (if it is not
 
75
# automatically detected).
 
76
#
 
77
# When running make, you might want to specify the board type:
 
78
#
 
79
#   $ BOARD=pro5v make
 
80
#
 
81
# Or in the environment:
 
82
#
82
83
#   $ export BOARD=pro5v
83
84
#   $ make
84
85
#
85
86
# For a list of available board types, run `make boards`.
86
87
87
 
# Here is a complete list of configuration parameters:
88
 
#
89
 
# ARDUINODIR   The path where you have installed/unpacked the arduino
90
 
#              software (from http://arduino.cc/)
 
88
# Here is a list of all configuration parameters:
91
89
#
92
90
# BOARD        Specify a target board type.
93
91
#
95
93
#              found.  If unspecified, an attempt is made to determine
96
94
#              the name of a connected arduino's serial device.
97
95
#
98
 
# TARGET       The name of the target file.  This is set automatically
99
 
#              if a .ino or .pde is found, but it is not neccesary to
100
 
#              set it otherwise.
 
96
# The following configuration parameters can be determined automatically:
 
97
#
 
98
# TARGET       The name of the target file.  This need not be set if it
 
99
#              is not determined automatically.
101
100
#
102
101
# SOURCES      A list of all source files of whatever language.  The
103
102
#              language type is determined by the file extension.
104
 
#              This is set automatically if a .ino or .pde is found.
105
103
#
106
 
# LIBRARIES    A list of arduino libraries to build and include.  This
107
 
#              is set automatically if a .ino or .pde is found.
 
104
# LIBRARIES    A list of arduino libraries to build and include.
108
105
#
109
106
# This general-purpose makefile also defines the following goals for
110
107
# use on the command line when you run make:
122
119
#              target, from those that that would be built for the
123
120
#              project.
124
121
#
125
 
# boards       This is not a real goal.  It just displays a list of
126
 
#              available board names, so that you can set the BOARD
127
 
#              environment variable appropriately.
128
 
#
129
 
# monitor      This is not a real goal.  It starts screen on the serial
130
 
#              device.  It is ment to be an equivelant to the arduino
131
 
#              serial monitor.
132
122
#_______________________________________________________________________________
133
123
#
134
124
 
135
125
# The full path to the arduino software, from arduino.cc
136
 
ifndef ARDUINODIR
137
126
ARDUINODIR := $(wildcard ~/opt/arduino-1.0)
138
 
endif
139
127
 
140
128
# check arduino software
141
129
ifeq ($(wildcard $(ARDUINODIR)/hardware/arduino/boards.txt), )
142
 
$(error ARDUINODIR is not set correctly; arduino software not found)
 
130
$(error ARDUINODIR is not set correctly at the top of arduino.mk)
143
131
endif
144
132
 
145
133
# auto mode?
215
203
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU) -DF_CPU=$(BOARD_BUILD_FCPU)
216
204
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOSRCDIR)
217
205
CPPFLAGS += -I$(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
218
 
CPPFLAGS += $(addprefix -I$(ARDUINODIR)/libraries/, $(LIBRARIES))
219
 
CPPFLAGS += $(patsubst %, -I$(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
 
206
CPPFLAGS += $(addprefix -I$(ARDUINODIR)/libraries/,$(LIBRARIES))
220
207
AVRDUDEFLAGS = -C $(ARDUINODIR)/hardware/tools/avrdude.conf -DV
221
208
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
222
209
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
228
215
#_______________________________________________________________________________
229
216
#                                                                          RULES
230
217
 
231
 
.PHONY: all target upload clean boards monitor
 
218
.PHONY: all target upload clean boards
232
219
 
233
220
all: target upload
234
221
 
248
235
        @sed -ne '/^#/d;s/^\(.*\).name=\(.*\)/\1            \2/;T' \
249
236
                -e 's/\(.\{12\}\) *\(.*\)/\1 \2/;p' $(BOARDS_FILE)
250
237
 
251
 
monitor:
252
 
        screen $(SERIALDEV)
253
 
 
254
238
# building the target
255
239
 
256
240
$(TARGET).hex: $(TARGET).elf