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
131
131
# monitor Start `screen` on the serial device. This is meant to be an
132
132
# equivalent to the Arduino serial monitor.
134
# size Displays size information about the bulit target.
134
136
# <file> Builds the specified file, either an object file or the target,
135
137
# from those that that would be built for the project.
136
138
#_______________________________________________________________________________
169
171
$(wildcard $(addprefix utility/, *.c *.cc *.cpp))
171
173
# automatically determine included libraries
172
ARDUINOLIBSAVAIL := $(notdir $(wildcard $(ARDUINODIR)/libraries/*))
173
LIBRARIES := $(filter $(ARDUINOLIBSAVAIL), \
174
LIBRARIES := $(filter $(notdir $(wildcard $(ARDUINODIR)/libraries/*)), \
174
175
$(shell sed -ne "s/^ *\# *include *[<\"]\(.*\)\.h[>\"]/\1/p" $(SOURCES)))
191
192
AR := $(call findsoftware,avr-ar)
192
193
OBJCOPY := $(call findsoftware,avr-objcopy)
193
194
AVRDUDE := $(call findsoftware,avrdude)
195
AVRSIZE := $(call findsoftware,avr-size)
196
198
TARGET := $(if $(TARGET),$(TARGET),a.out)
197
199
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)) ))))
200
DEPFILES := $(patsubst %, .dep/%.dep, $(SOURCES))
201
ARDUINOCOREDIR := $(ARDUINODIR)/hardware/arduino/cores/arduino
202
ARDUINOLIB := .lib/arduino.a
203
ARDUINOLIBLIBSDIR := $(ARDUINODIR)/libraries
204
ARDUINOLIBLIBSPATH := $(foreach lib, $(LIBRARIES), \
205
$(ARDUINODIR)/libraries/$(lib)/ $(ARDUINODIR)/libraries/$(lib)/utility/ )
206
ARDUINOLIBOBJS := $(foreach dir, $(ARDUINOCOREDIR) $(ARDUINOLIBLIBSPATH), \
207
$(patsubst %, .lib/%.o, $(wildcard $(addprefix $(dir)/, *.c *.cpp))))
208
208
ifeq "$(AVRDUDECONF)" ""
209
209
ifeq "$(AVRDUDE)" "$(ARDUINODIR)/hardware/tools/avr/bin/avrdude"
210
210
AVRDUDECONF := $(ARDUINODIR)/hardware/tools/avr/etc/avrdude.conf
234
234
$(shell sed -ne "s/$(BOARD).upload.speed=\(.*\)/\1/p" $(BOARDS_FILE))
235
235
BOARD_UPLOAD_PROTOCOL := \
236
236
$(shell sed -ne "s/$(BOARD).upload.protocol=\(.*\)/\1/p" $(BOARDS_FILE))
238
$(shell sed -ne "s/$(BOARD).build.vid=\(.*\)/\1/p" $(BOARDS_FILE))
240
$(shell sed -ne "s/$(BOARD).build.pid=\(.*\)/\1/p" $(BOARDS_FILE))
239
243
ifeq "$(BOARD_BUILD_MCU)" ""
249
253
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
250
254
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
251
255
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
CPPFLAGS += -DUSB_VID=$(BOARD_USB_VID) -DUSB_PID=$(BOARD_USB_PID)
257
CPPFLAGS += -I. -Iutil -Iutility -I $(ARDUINOCOREDIR)
258
CPPFLAGS += -I $(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
259
CPPFLAGS += $(addprefix -I $(ARDUINODIR)/libraries/, $(LIBRARIES))
260
CPPFLAGS += $(patsubst %, -I $(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
261
CPPDEPFLAGS = -MMD -MP -MF .dep/$<.dep
262
CPPINOFLAGS := -x c++ -include $(ARDUINOCOREDIR)/Arduino.h
256
263
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
257
264
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
258
265
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
259
266
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)
268
# figure out which arg to use with stty (for OS X, GNU and busybox stty)
269
STTYFARG := $(shell stty --help 2>&1 | \
270
grep -q 'illegal option' && echo -f || echo -F)
272
# include dependencies
273
ifneq "$(MAKECMDGOALS)" "clean"
265
278
.DEFAULT_GOAL := all
267
280
#_______________________________________________________________________________
270
.PHONY: all target upload clean boards monitor
283
.PHONY: all target upload clean boards monitor size
274
287
target: $(TARGET).hex
277
290
@echo "\nUploading to board..."
278
291
@test -n "$(SERIALDEV)" || { \
279
292
echo "error: SERIALDEV could not be determined automatically." >&2; \
289
302
rm -f $(TARGET).elf $(TARGET).hex $(ARDUINOLIB) *~
290
rm -rf $(ARDUINOLIBTMP)
293
306
@echo Available values for BOARD:
294
@sed -ne '/^#/d;s/^\(.*\).name=\(.*\)/\1 \2/;T' \
295
-e 's/\(.\{12\}\) *\(.*\)/\1 \2/;p' $(BOARDS_FILE)
307
@sed -nEe '/^#/d; /^[^.]+\.name=/p' $(BOARDS_FILE) | \
308
sed -Ee 's/([^.]+)\.name=(.*)/\1 \2/' \
309
-e 's/(.{12}) *(.*)/\1 \2/'
298
312
@test -n "$(SERIALDEV)" || { \
314
331
.INTERMEDIATE: $(TARGET).elf
316
333
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
317
$(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
334
$(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -lm -o $@
337
mkdir -p .dep/$(dir $<)
338
$(COMPILE.c) $(CPPDEPFLAGS) -o $@ $<
341
mkdir -p .dep/$(dir $<)
342
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
345
mkdir -p .dep/$(dir $<)
346
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
349
mkdir -p .dep/$(dir $<)
350
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
320
$(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
353
mkdir -p .dep/$(dir $<)
354
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
323
$(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
357
mkdir -p .dep/$(dir $<)
358
$(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
325
360
# building the arduino library
327
362
$(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)
367
$(COMPILE.c) -o $@ $<
371
$(COMPILE.cpp) -o $@ $<
375
$(COMPILE.cpp) -o $@ $<
355
379
$(COMPILE.cpp) -o $@ $<