/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-11-28 21:52:52 UTC
  • Revision ID: tim@ed.am-20121128215252-5ml7w5vtfljskurt
added support for third party libraries and fixed support for .C c++ files

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#
3
3
#                         edam's Arduino makefile
4
4
#_______________________________________________________________________________
5
 
#                                                                 version 0.3dev
 
5
#                                                                 version 0.5dev
6
6
#
7
 
# Copyright (C) 2011, 1012 Tim Marston <tim@ed.am>.
 
7
# Copyright (C) 2011, 2012 Tim Marston <tim@ed.am>.
8
8
#
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
117
117
# when you run make:
118
118
#
119
119
# all          This is the default if no goal is specified.  It builds the
120
 
#              target and uploads it.
 
120
#              target.
121
121
#
122
122
# target       Builds the target.
123
123
#
156
156
AVRTOOLSPATH += $(ARDUINODIR)/hardware/tools/avr/bin
157
157
endif
158
158
 
 
159
# default path to find libraries
 
160
LIBRARIESPATH := libraries libs $(ARDUINODIR)/libraries
 
161
 
159
162
# auto mode?
160
163
INOFILE := $(wildcard *.ino *.pde)
161
164
ifdef INOFILE
166
169
# automatically determine sources and targeet
167
170
TARGET := $(basename $(INOFILE))
168
171
SOURCES := $(INOFILE) \
169
 
        $(wildcard *.c *.cc *.cpp) \
170
 
        $(wildcard $(addprefix util/, *.c *.cc *.cpp)) \
171
 
        $(wildcard $(addprefix utility/, *.c *.cc *.cpp))
 
172
        $(wildcard *.c *.cc *.cpp *.C) \
 
173
        $(wildcard $(addprefix util/, *.c *.cc *.cpp *.C)) \
 
174
        $(wildcard $(addprefix utility/, *.c *.cc *.cpp *.C))
172
175
 
173
176
# automatically determine included libraries
174
 
ARDUINOLIBSAVAIL := $(notdir $(wildcard $(ARDUINODIR)/libraries/*))
175
 
LIBRARIES := $(filter $(ARDUINOLIBSAVAIL), \
 
177
LIBRARIES := $(filter $(notdir $(wildcard $(addsuffix /*, $(LIBRARIESPATH)))), \
176
178
        $(shell sed -ne "s/^ *\# *include *[<\"]\(.*\)\.h[>\"]/\1/p" $(SOURCES)))
177
179
 
178
180
endif
181
183
SERIALDEVGUESS := 0
182
184
ifeq "$(SERIALDEV)" ""
183
185
SERIALDEV := $(firstword $(wildcard \
184
 
        /dev/ttyACM? /dev/ttyUSB? /dev/tty.usbmodem*))
 
186
        /dev/ttyACM? /dev/ttyUSB? /dev/tty.usbserial* /dev/tty.usbmodem*))
185
187
SERIALDEVGUESS := 1
186
188
endif
187
189
 
198
200
# files
199
201
TARGET := $(if $(TARGET),$(TARGET),a.out)
200
202
OBJECTS := $(addsuffix .o, $(basename $(SOURCES)))
201
 
ARDUINOSRCDIR := $(ARDUINODIR)/hardware/arduino/cores/arduino
202
 
ARDUINOLIBSDIR := $(ARDUINODIR)/libraries
203
 
ARDUINOLIB := _arduino.a
204
 
ARDUINOLIBTMP := $(ARDUINOLIB).tmp
205
 
ARDUINOLIBOBJS := $(patsubst %, $(ARDUINOLIBTMP)/%.o, $(basename $(notdir \
206
 
        $(wildcard $(addprefix $(ARDUINOSRCDIR)/, *.c *.cpp)))))
207
 
ARDUINOLIBOBJS += $(foreach lib, $(LIBRARIES), \
208
 
        $(patsubst %, $(ARDUINOLIBTMP)/%.o, $(basename $(notdir \
209
 
        $(wildcard $(addprefix $(ARDUINOLIBSDIR)/$(lib)/, *.c *.cpp)) \
210
 
        $(wildcard $(addprefix $(ARDUINOLIBSDIR)/$(lib)/utility/, *.c *.cpp)) ))))
 
203
DEPFILES := $(patsubst %, .dep/%.dep, $(SOURCES))
 
204
 
 
205
# directories
 
206
LIBRARIESDIRS := $(foreach lib, $(LIBRARIES), \
 
207
        $(firstword $(wildcard $(addsuffix /$(lib), $(LIBRARIESPATH)))))
 
208
LIBRARIESDIRS += $(addsuffix /utility, $(LIBRARIESDIRS))
 
209
ARDUINOCOREDIR := $(ARDUINODIR)/hardware/arduino/cores/arduino
 
210
 
 
211
# static arduino lib
 
212
ARDUINOLIB := .lib/arduino.a
 
213
ARDUINOLIBOBJS := $(foreach dir, $(ARDUINOCOREDIR) $(LIBRARIESDIRS), \
 
214
        $(patsubst %, .lib/%.o, $(wildcard $(addprefix $(dir)/, *.c *.cpp))))
 
215
 
 
216
# avrdude confifuration
211
217
ifeq "$(AVRDUDECONF)" ""
212
218
ifeq "$(AVRDUDE)" "$(ARDUINODIR)/hardware/tools/avr/bin/avrdude"
213
219
AVRDUDECONF := $(ARDUINODIR)/hardware/tools/avr/etc/avrdude.conf
237
243
        $(shell sed -ne "s/$(BOARD).upload.speed=\(.*\)/\1/p" $(BOARDS_FILE))
238
244
BOARD_UPLOAD_PROTOCOL := \
239
245
        $(shell sed -ne "s/$(BOARD).upload.protocol=\(.*\)/\1/p" $(BOARDS_FILE))
 
246
BOARD_USB_VID := \
 
247
        $(shell sed -ne "s/$(BOARD).build.vid=\(.*\)/\1/p" $(BOARDS_FILE))
 
248
BOARD_USB_PID := \
 
249
        $(shell sed -ne "s/$(BOARD).build.pid=\(.*\)/\1/p" $(BOARDS_FILE))
240
250
 
241
251
# invalid board?
242
252
ifeq "$(BOARD_BUILD_MCU)" ""
248
258
endif
249
259
 
250
260
# flags
251
 
CPPFLAGS := -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
 
261
CPPFLAGS += -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
252
262
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
253
263
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
254
264
CPPFLAGS += -DF_CPU=$(BOARD_BUILD_FCPU) -DARDUINO=$(ARDUINOCONST)
255
 
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOSRCDIR)
256
 
CPPFLAGS += -I$(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
257
 
CPPFLAGS += $(addprefix -I$(ARDUINODIR)/libraries/, $(LIBRARIES))
258
 
CPPFLAGS += $(patsubst %, -I$(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
259
 
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
 
265
CPPFLAGS += -DUSB_VID=$(BOARD_USB_VID) -DUSB_PID=$(BOARD_USB_PID)
 
266
CPPFLAGS += -I. -Iutil -Iutility -I $(ARDUINOCOREDIR)
 
267
CPPFLAGS += -I $(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
 
268
CPPFLAGS += $(addprefix -I , $(LIBRARIESDIRS))
 
269
CPPDEPFLAGS = -MMD -MP -MF .dep/$<.dep
 
270
CPPINOFLAGS := -x c++ -include $(ARDUINOCOREDIR)/Arduino.h
 
271
AVRDUDEFLAGS += $(addprefix -C , $(AVRDUDECONF)) -DV
260
272
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
261
273
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
262
 
LINKFLAGS := -Os -Wl,--gc-sections -mmcu=$(BOARD_BUILD_MCU)
263
 
 
264
 
# figure out which arg to use with stty
265
 
STTYFARG := $(shell stty --help > /dev/null 2>&1 && echo -F || echo -f)
 
274
LINKFLAGS += -Os -Wl,--gc-sections -mmcu=$(BOARD_BUILD_MCU)
 
275
 
 
276
# figure out which arg to use with stty (for OS X, GNU and busybox stty)
 
277
STTYFARG := $(shell stty --help 2>&1 | \
 
278
        grep -q 'illegal option' && echo -f || echo -F)
 
279
 
 
280
# include dependencies
 
281
ifneq "$(MAKECMDGOALS)" "clean"
 
282
-include $(DEPFILES)
 
283
endif
266
284
 
267
285
# default rule
268
286
.DEFAULT_GOAL := all
272
290
 
273
291
.PHONY: all target upload clean boards monitor size
274
292
 
275
 
all: target upload
 
293
all: target
276
294
 
277
295
target: $(TARGET).hex
278
296
 
279
 
upload:
 
297
upload: target
280
298
        @echo "\nUploading to board..."
281
299
        @test -n "$(SERIALDEV)" || { \
282
300
                echo "error: SERIALDEV could not be determined automatically." >&2; \
290
308
clean:
291
309
        rm -f $(OBJECTS)
292
310
        rm -f $(TARGET).elf $(TARGET).hex $(ARDUINOLIB) *~
293
 
        rm -rf $(ARDUINOLIBTMP)
 
311
        rm -rf .lib .dep
294
312
 
295
313
boards:
296
314
        @echo Available values for BOARD:
297
 
        @sed -ne '/^#/d;s/^\(.*\).name=\(.*\)/\1            \2/;T' \
298
 
                -e 's/\(.\{12\}\) *\(.*\)/\1 \2/;p' $(BOARDS_FILE)
 
315
        @sed -nEe '/^#/d; /^[^.]+\.name=/p' $(BOARDS_FILE) | \
 
316
                sed -Ee 's/([^.]+)\.name=(.*)/\1            \2/' \
 
317
                        -e 's/(.{12}) *(.*)/\1 \2/'
299
318
 
300
319
monitor:
301
320
        @test -n "$(SERIALDEV)" || { \
320
339
.INTERMEDIATE: $(TARGET).elf
321
340
 
322
341
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
323
 
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
 
342
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -lm -o $@
 
343
 
 
344
%.o: %.c
 
345
        mkdir -p .dep/$(dir $<)
 
346
        $(COMPILE.c) $(CPPDEPFLAGS) -o $@ $<
 
347
 
 
348
%.o: %.cpp
 
349
        mkdir -p .dep/$(dir $<)
 
350
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
 
351
 
 
352
%.o: %.cc
 
353
        mkdir -p .dep/$(dir $<)
 
354
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
 
355
 
 
356
%.o: %.C
 
357
        mkdir -p .dep/$(dir $<)
 
358
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
324
359
 
325
360
%.o: %.ino
326
 
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
 
361
        mkdir -p .dep/$(dir $<)
 
362
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
327
363
 
328
364
%.o: %.pde
329
 
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
 
365
        mkdir -p .dep/$(dir $<)
 
366
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
330
367
 
331
368
# building the arduino library
332
369
 
333
370
$(ARDUINOLIB): $(ARDUINOLIBOBJS)
334
371
        $(AR) rcs $@ $?
335
 
        rm -rf $(ARDUINOLIBTMP)
336
 
 
337
 
.INTERMEDIATE: $(ARDUINOLIBOBJS)
338
 
 
339
 
$(ARDUINOLIBTMP)/%.o: $(ARDUINOSRCDIR)/%.c
340
 
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
341
 
        $(COMPILE.c) -o $@ $<
342
 
 
343
 
$(ARDUINOLIBTMP)/%.o: $(ARDUINOSRCDIR)/%.cpp
344
 
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
345
 
        $(COMPILE.cpp) -o $@ $<
346
 
 
347
 
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/%.c
348
 
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
349
 
        $(COMPILE.c) -o $@ $<
350
 
 
351
 
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/%.cpp
352
 
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
353
 
        $(COMPILE.cpp) -o $@ $<
354
 
 
355
 
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/utility/%.c
356
 
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
357
 
        $(COMPILE.c) -o $@ $<
358
 
 
359
 
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/utility/%.cpp
360
 
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
 
372
 
 
373
.lib/%.c.o: %.c
 
374
        mkdir -p $(dir $@)
 
375
        $(COMPILE.c) -o $@ $<
 
376
 
 
377
.lib/%.cpp.o: %.cpp
 
378
        mkdir -p $(dir $@)
 
379
        $(COMPILE.cpp) -o $@ $<
 
380
 
 
381
.lib/%.cc.o: %.cc
 
382
        mkdir -p $(dir $@)
 
383
        $(COMPILE.cpp) -o $@ $<
 
384
 
 
385
.lib/%.C.o: %.C
 
386
        mkdir -p $(dir $@)
361
387
        $(COMPILE.cpp) -o $@ $<