3
3
# edam's Arduino makefile
4
4
#_______________________________________________________________________________
7
# Copyright (C) 2011, 1012 Tim Marston <tim@ed.am>.
7
# Copyright (C) 2011, 2012 Tim Marston <tim@ed.am>.
9
9
# Permission is hereby granted, free of charge, to any person obtaining a copy
10
10
# of this software and associated documentation files (the "Software"), to deal
70
70
# determine values for SOURCES, TARGET and LIBRARIES. Any .c, .cc and .cpp
71
71
# files in the project directory (or any "util" or "utility" subdirectories)
72
72
# are automatically included in the build and are scanned for Arduino libraries
73
# that have been #included. Note, there can only be one .ino (or .pde) file.
73
# that have been #included. Note, there can only be one .ino (or .pde) file.
75
75
# Alternatively, if you want to manually specify build variables, create a
76
76
# Makefile that defines SOURCES and LIBRARIES and then includes arduino.mk.
85
85
# ARDUINODIR The path where the Arduino software is installed on your system.
87
87
# ARDUINOCONST The Arduino software version, as an integer, used to define the
88
# ARDUINO version constant. This defaults to 100 if undefined.
88
# ARDUINO version constant. This defaults to 100 if undefined.
90
# AVRDUDECONF The avrdude.conf to use. If undefined, this defaults to a guess
91
# based on where the avrdude in use is. If empty, no avrdude.conf
90
# AVRDUDECONF The avrdude.conf to use. If undefined, this defaults to a guess
91
# based on where the avrdude in use is. If empty, no avrdude.conf
92
92
# is passed to avrdude (to the system default is used).
94
# AVRTOOLSPATH A space-separated list of directories to search in order when
95
# looking for the avr build tools. This defaults to the system PATH
96
# followed by subdirectories in ARDUINODIR if undefined.
94
# AVRDUDEFLAGS Specify any additional flags for avrdude. The usual flags,
95
# required to build the project, will be appended to this.
97
# AVRTOOLSPATH A space-separated list of directories that is searched in order
98
# when looking for the avr build tools. This defaults to PATH,
99
# followed by subdirectories in ARDUINODIR.
98
101
# BOARD Specify a target board type. Run `make boards` to see available
104
# CPPFLAGS Specify any additional flags for the compiler. The usual flags,
105
# required to build the project, will be appended to this.
107
# LINKFLAGS Specify any additional flags for the linker. The usual flags,
108
# required to build the project, will be appended to this.
101
110
# LIBRARIES A list of Arduino libraries to build and include. This is set
102
111
# automatically if a .ino (or .pde) is found.
113
# LIBRARYPATH A space-separated list of directories that is searched in order
114
# when looking for Arduino libraries. This defaults to "libs",
115
# "libraries" and then the Arduino software's libraries directory.
104
117
# SERIALDEV The unix device name of the serial device that is the Arduino.
105
118
# If unspecified, an attempt is made to determine the name of a
106
119
# connected Arduino's serial device.
131
144
# monitor Start `screen` on the serial device. This is meant to be an
132
145
# equivalent to the Arduino serial monitor.
147
# size Displays size information about the bulit target.
134
149
# <file> Builds the specified file, either an object file or the target,
135
150
# from those that that would be built for the project.
136
151
#_______________________________________________________________________________
164
182
# automatically determine sources and targeet
165
183
TARGET := $(basename $(INOFILE))
166
184
SOURCES := $(INOFILE) \
167
$(wildcard *.c *.cc *.cpp) \
168
$(wildcard $(addprefix util/, *.c *.cc *.cpp)) \
169
$(wildcard $(addprefix utility/, *.c *.cc *.cpp))
185
$(wildcard *.c *.cc *.cpp *.C) \
186
$(wildcard $(addprefix util/, *.c *.cc *.cpp *.C)) \
187
$(wildcard $(addprefix utility/, *.c *.cc *.cpp *.C))
171
189
# automatically determine included libraries
172
ARDUINOLIBSAVAIL := $(notdir $(wildcard $(ARDUINODIR)/libraries/*))
173
LIBRARIES := $(filter $(ARDUINOLIBSAVAIL), \
190
LIBRARIES := $(filter $(notdir $(wildcard $(addsuffix /*, $(LIBRARYPATH)))), \
174
191
$(shell sed -ne "s/^ *\# *include *[<\"]\(.*\)\.h[>\"]/\1/p" $(SOURCES)))
191
208
AR := $(call findsoftware,avr-ar)
192
209
OBJCOPY := $(call findsoftware,avr-objcopy)
193
210
AVRDUDE := $(call findsoftware,avrdude)
211
AVRSIZE := $(call findsoftware,avr-size)
214
ARDUINOCOREDIR := $(ARDUINODIR)/hardware/arduino/cores/arduino
215
LIBRARYDIRS := $(foreach lib, $(LIBRARIES), \
216
$(firstword $(wildcard $(addsuffix /$(lib), $(LIBRARYPATH)))))
217
LIBRARYDIRS += $(addsuffix /utility, $(LIBRARYDIRS))
196
220
TARGET := $(if $(TARGET),$(TARGET),a.out)
197
221
OBJECTS := $(addsuffix .o, $(basename $(SOURCES)))
198
ARDUINOSRCDIR := $(ARDUINODIR)/hardware/arduino/cores/arduino
199
ARDUINOLIBSDIR := $(ARDUINODIR)/libraries
200
ARDUINOLIB := _arduino.a
201
ARDUINOLIBTMP := $(ARDUINOLIB).tmp
202
ARDUINOLIBOBJS := $(patsubst %, $(ARDUINOLIBTMP)/%.o, $(basename $(notdir \
203
$(wildcard $(addprefix $(ARDUINOSRCDIR)/, *.c *.cpp)))))
204
ARDUINOLIBOBJS += $(foreach lib, $(LIBRARIES), \
205
$(patsubst %, $(ARDUINOLIBTMP)/%.o, $(basename $(notdir \
206
$(wildcard $(addprefix $(ARDUINOLIBSDIR)/$(lib)/, *.c *.cpp)) \
207
$(wildcard $(addprefix $(ARDUINOLIBSDIR)/$(lib)/utility/, *.c *.cpp)) ))))
222
DEPFILES := $(patsubst %, .dep/%.dep, $(SOURCES))
223
ARDUINOLIB := .lib/arduino.a
224
ARDUINOLIBOBJS := $(foreach dir, $(ARDUINOCOREDIR) $(LIBRARYDIRS), \
225
$(patsubst %, .lib/%.o, $(wildcard $(addprefix $(dir)/, *.c *.cpp))))
227
# avrdude confifuration
208
228
ifeq "$(AVRDUDECONF)" ""
209
229
ifeq "$(AVRDUDE)" "$(ARDUINODIR)/hardware/tools/avr/bin/avrdude"
210
230
AVRDUDECONF := $(ARDUINODIR)/hardware/tools/avr/etc/avrdude.conf
234
254
$(shell sed -ne "s/$(BOARD).upload.speed=\(.*\)/\1/p" $(BOARDS_FILE))
235
255
BOARD_UPLOAD_PROTOCOL := \
236
256
$(shell sed -ne "s/$(BOARD).upload.protocol=\(.*\)/\1/p" $(BOARDS_FILE))
258
$(shell sed -ne "s/$(BOARD).build.vid=\(.*\)/\1/p" $(BOARDS_FILE))
260
$(shell sed -ne "s/$(BOARD).build.pid=\(.*\)/\1/p" $(BOARDS_FILE))
261
BOARD_BOOTLOADER_PATH := \
262
$(shell sed -ne "s/$(BOARD).bootloader.path=\(.*\)/\1/p" $(BOARDS_FILE))
239
265
ifeq "$(BOARD_BUILD_MCU)" ""
248
CPPFLAGS := -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
274
CPPFLAGS += -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
249
275
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
250
276
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
251
277
CPPFLAGS += -DF_CPU=$(BOARD_BUILD_FCPU) -DARDUINO=$(ARDUINOCONST)
252
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOSRCDIR)
253
CPPFLAGS += -I$(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
254
CPPFLAGS += $(addprefix -I$(ARDUINODIR)/libraries/, $(LIBRARIES))
255
CPPFLAGS += $(patsubst %, -I$(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
256
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
278
CPPFLAGS += -DUSB_VID=$(BOARD_USB_VID) -DUSB_PID=$(BOARD_USB_PID)
279
CPPFLAGS += -I. -Iutil -Iutility -I $(ARDUINOCOREDIR)
280
CPPFLAGS += -I $(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
281
CPPFLAGS += $(addprefix -I , $(LIBRARYDIRS))
282
CPPDEPFLAGS = -MMD -MP -MF .dep/$<.dep
283
CPPINOFLAGS := -x c++ -include $(ARDUINOCOREDIR)/Arduino.h
284
AVRDUDEFLAGS += $(addprefix -C , $(AVRDUDECONF)) -DV
257
285
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
258
286
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
259
LINKFLAGS := -Os -Wl,--gc-sections -mmcu=$(BOARD_BUILD_MCU)
261
# figure out which arg to use with stty
262
STTYFARG := $(shell stty --help > /dev/null 2>&1 && echo -F || echo -f)
287
LINKFLAGS += -Os -Wl,--gc-sections -mmcu=$(BOARD_BUILD_MCU)
289
# figure out which arg to use with stty (for OS X, GNU and busybox stty)
290
STTYFARG := $(shell stty --help 2>&1 | \
291
grep -q 'illegal option' && echo -f || echo -F)
293
# include dependencies
294
ifneq "$(MAKECMDGOALS)" "clean"
265
299
.DEFAULT_GOAL := all
267
301
#_______________________________________________________________________________
270
.PHONY: all target upload clean boards monitor
304
.PHONY: all target upload clean boards monitor size
274
308
target: $(TARGET).hex
277
311
@echo "\nUploading to board..."
278
312
@test -n "$(SERIALDEV)" || { \
279
313
echo "error: SERIALDEV could not be determined automatically." >&2; \
281
315
@test 0 -eq $(SERIALDEVGUESS) || { \
282
316
echo "*GUESSING* at serial device:" $(SERIALDEV); \
318
ifeq "$(BOARD_BOOTLOADER_PATH)" "caterina"
319
stty $(STTYFARG) $(SERIALDEV) speed 1200
284
322
stty $(STTYFARG) $(SERIALDEV) hupcl
285
323
$(AVRDUDE) $(AVRDUDEFLAGS) -U flash:w:$(TARGET).hex:i
289
327
rm -f $(TARGET).elf $(TARGET).hex $(ARDUINOLIB) *~
290
rm -rf $(ARDUINOLIBTMP)
293
331
@echo Available values for BOARD:
294
@sed -ne '/^#/d;s/^\(.*\).name=\(.*\)/\1 \2/;T' \
295
-e 's/\(.\{12\}\) *\(.*\)/\1 \2/;p' $(BOARDS_FILE)
332
@sed -nEe '/^#/d; /^[^.]+\.name=/p' $(BOARDS_FILE) | \
333
sed -Ee 's/([^.]+)\.name=(.*)/\1 \2/' \
334
-e 's/(.{12}) *(.*)/\1 \2/'
298
337
@test -n "$(SERIALDEV)" || { \
301
340
@test -n `which screen` || { \
302
341
echo "error: can't find GNU screen, you might need to install it." >&2 \
304
343
@test 0 -eq $(SERIALDEVGUESS) || { \
305
344
echo "*GUESSING* at serial device:" $(SERIALDEV); \
307
346
screen $(SERIALDEV)
349
echo && $(AVRSIZE) --format=avr --mcu=$(BOARD_BUILD_MCU) $(TARGET).elf
309
351
# building the target
311
353
$(TARGET).hex: $(TARGET).elf
314
356
.INTERMEDIATE: $(TARGET).elf
316
358
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
317
$(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
359
$(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -lm -o $@
362
mkdir -p .dep/$(dir $<)
363
$(COMPILE.c) $(CPPDEPFLAGS) -o $@ $<
366
mkdir -p .dep/$(dir $<)
367
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
370
mkdir -p .dep/$(dir $<)
371
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
374
mkdir -p .dep/$(dir $<)
375
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
320
$(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
378
mkdir -p .dep/$(dir $<)
379
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
323
$(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
382
mkdir -p .dep/$(dir $<)
383
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
325
385
# building the arduino library
327
387
$(ARDUINOLIB): $(ARDUINOLIBOBJS)
329
rm -rf $(ARDUINOLIBTMP)
331
.INTERMEDIATE: $(ARDUINOLIBOBJS)
333
$(ARDUINOLIBTMP)/%.o: $(ARDUINOSRCDIR)/%.c
334
@test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
335
$(COMPILE.c) -o $@ $<
337
$(ARDUINOLIBTMP)/%.o: $(ARDUINOSRCDIR)/%.cpp
338
@test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
339
$(COMPILE.cpp) -o $@ $<
341
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/%.c
342
@test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
343
$(COMPILE.c) -o $@ $<
345
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/%.cpp
346
@test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
347
$(COMPILE.cpp) -o $@ $<
349
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/utility/%.c
350
@test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
351
$(COMPILE.c) -o $@ $<
353
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/utility/%.cpp
354
@test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
392
$(COMPILE.c) -o $@ $<
396
$(COMPILE.cpp) -o $@ $<
400
$(COMPILE.cpp) -o $@ $<
355
404
$(COMPILE.cpp) -o $@ $<