/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-02-24 11:51:59 UTC
  • Revision ID: tim@ed.am-20120224115159-we23shz3vzsx7dsv
update version no.

Show diffs side-by-side

added added

removed removed

2
2
#
3
3
#                         edam's Arduino makefile
4
4
#_______________________________________________________________________________
5
 
#                                                                 version 0.4dev
 
5
#                                                                 version 0.3dev
6
6
#
7
7
# Copyright (C) 2011, 1012 Tim Marston <tim@ed.am>.
8
8
#
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.
 
120
#              target and uploads it.
121
121
#
122
122
# target       Builds the target.
123
123
#
131
131
# monitor      Start `screen` on the serial device.  This is meant to be an
132
132
#              equivalent to the Arduino serial monitor.
133
133
#
134
 
# size         Displays size information about the bulit target.
135
 
#
136
134
# <file>       Builds the specified file, either an object file or the target,
137
135
#              from those that that would be built for the project.
138
136
#_______________________________________________________________________________
171
169
        $(wildcard $(addprefix utility/, *.c *.cc *.cpp))
172
170
 
173
171
# automatically determine included libraries
174
 
LIBRARIES := $(filter $(notdir $(wildcard $(ARDUINODIR)/libraries/*)), \
 
172
ARDUINOLIBSAVAIL := $(notdir $(wildcard $(ARDUINODIR)/libraries/*))
 
173
LIBRARIES := $(filter $(ARDUINOLIBSAVAIL), \
175
174
        $(shell sed -ne "s/^ *\# *include *[<\"]\(.*\)\.h[>\"]/\1/p" $(SOURCES)))
176
175
 
177
176
endif
180
179
SERIALDEVGUESS := 0
181
180
ifeq "$(SERIALDEV)" ""
182
181
SERIALDEV := $(firstword $(wildcard \
183
 
        /dev/ttyACM? /dev/ttyUSB? /dev/tty.usbserial* /dev/tty.usbmodem*))
 
182
        /dev/ttyACM? /dev/ttyUSB? /dev/tty.usbmodem*))
184
183
SERIALDEVGUESS := 1
185
184
endif
186
185
 
192
191
AR := $(call findsoftware,avr-ar)
193
192
OBJCOPY := $(call findsoftware,avr-objcopy)
194
193
AVRDUDE := $(call findsoftware,avrdude)
195
 
AVRSIZE := $(call findsoftware,avr-size)
196
194
 
197
195
# files
198
196
TARGET := $(if $(TARGET),$(TARGET),a.out)
199
197
OBJECTS := $(addsuffix .o, $(basename $(SOURCES)))
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))))
 
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)) ))))
208
208
ifeq "$(AVRDUDECONF)" ""
209
209
ifeq "$(AVRDUDE)" "$(ARDUINODIR)/hardware/tools/avr/bin/avrdude"
210
210
AVRDUDECONF := $(ARDUINODIR)/hardware/tools/avr/etc/avrdude.conf
249
249
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
250
250
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
251
251
CPPFLAGS += -DF_CPU=$(BOARD_BUILD_FCPU) -DARDUINO=$(ARDUINOCONST)
252
 
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOCOREDIR)
 
252
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOSRCDIR)
253
253
CPPFLAGS += -I$(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
254
254
CPPFLAGS += $(addprefix -I$(ARDUINODIR)/libraries/, $(LIBRARIES))
255
255
CPPFLAGS += $(patsubst %, -I$(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
256
 
CPPDEPFLAGS = -MMD -MP -MF .dep/$<.dep
257
 
CPPINOFLAGS := -x c++ -include $(ARDUINOCOREDIR)/Arduino.h
258
256
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
259
257
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
260
258
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
261
259
LINKFLAGS := -Os -Wl,--gc-sections -mmcu=$(BOARD_BUILD_MCU)
262
260
 
263
 
# figure out which arg to use with stty (for OS X, GNU and busybox stty)
264
 
STTYFARG := $(shell stty --help 2>&1 | \
265
 
        grep -q 'illegal option' && echo -f || echo -F)
266
 
 
267
 
# include dependencies
268
 
ifneq "$(MAKECMDGOALS)" "clean"
269
 
-include $(DEPFILES)
270
 
endif
 
261
# figure out which arg to use with stty
 
262
STTYFARG := $(shell stty --help > /dev/null 2>&1 && echo -F || echo -f)
271
263
 
272
264
# default rule
273
265
.DEFAULT_GOAL := all
275
267
#_______________________________________________________________________________
276
268
#                                                                          RULES
277
269
 
278
 
.PHONY: all target upload clean boards monitor size
 
270
.PHONY: all target upload clean boards monitor
279
271
 
280
 
all: target
 
272
all: target upload
281
273
 
282
274
target: $(TARGET).hex
283
275
 
284
 
upload: target
 
276
upload:
285
277
        @echo "\nUploading to board..."
286
278
        @test -n "$(SERIALDEV)" || { \
287
279
                echo "error: SERIALDEV could not be determined automatically." >&2; \
295
287
clean:
296
288
        rm -f $(OBJECTS)
297
289
        rm -f $(TARGET).elf $(TARGET).hex $(ARDUINOLIB) *~
298
 
        rm -rf .lib .dep
 
290
        rm -rf $(ARDUINOLIBTMP)
299
291
 
300
292
boards:
301
293
        @echo Available values for BOARD:
302
 
        @sed -nEe '/^#/d; /^[^.]+\.name=/p' $(BOARDS_FILE) | \
303
 
                sed -Ee 's/([^.]+)\.name=(.*)/\1            \2/' \
304
 
                        -e 's/(.{12}) *(.*)/\1 \2/'
 
294
        @sed -ne '/^#/d;s/^\(.*\).name=\(.*\)/\1            \2/;T' \
 
295
                -e 's/\(.\{12\}\) *\(.*\)/\1 \2/;p' $(BOARDS_FILE)
305
296
 
306
297
monitor:
307
298
        @test -n "$(SERIALDEV)" || { \
315
306
                echo; }
316
307
        screen $(SERIALDEV)
317
308
 
318
 
size: $(TARGET).elf
319
 
        echo && $(AVRSIZE) --format=avr --mcu=$(BOARD_BUILD_MCU) $(TARGET).elf
320
 
 
321
309
# building the target
322
310
 
323
311
$(TARGET).hex: $(TARGET).elf
328
316
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
329
317
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
330
318
 
331
 
%.o: %.c
332
 
        mkdir -p .dep/$(dir $<)
333
 
        $(COMPILE.c) $(CPPDEPFLAGS) -o $@ $<
334
 
 
335
 
%.o: %.cpp
336
 
        mkdir -p .dep/$(dir $<)
337
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
338
 
 
339
 
%.o: %.cc
340
 
        mkdir -p .dep/$(dir $<)
341
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
342
 
 
343
 
%.o: %.C
344
 
        mkdir -p .dep/$(dir $<)
345
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
346
 
 
347
319
%.o: %.ino
348
 
        mkdir -p .dep/$(dir $<)
349
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
 
320
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
350
321
 
351
322
%.o: %.pde
352
 
        mkdir -p .dep/$(dir $<)
353
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
 
323
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
354
324
 
355
325
# building the arduino library
356
326
 
357
327
$(ARDUINOLIB): $(ARDUINOLIBOBJS)
358
328
        $(AR) rcs $@ $?
359
 
 
360
 
.lib/%.c.o: %.c
361
 
        mkdir -p $(dir $@)
362
 
        $(COMPILE.c) -o $@ $<
363
 
 
364
 
.lib/%.cpp.o: %.cpp
365
 
        mkdir -p $(dir $@)
366
 
        $(COMPILE.cpp) -o $@ $<
367
 
 
368
 
.lib/%.cc.o: %.cc
369
 
        mkdir -p $(dir $@)
370
 
        $(COMPILE.cpp) -o $@ $<
371
 
 
372
 
.lib/%.C.o: %.C
373
 
        mkdir -p $(dir $@)
 
329
        rm -rf $(ARDUINOLIBTMP)
 
330
 
 
331
.INTERMEDIATE: $(ARDUINOLIBOBJS)
 
332
 
 
333
$(ARDUINOLIBTMP)/%.o: $(ARDUINOSRCDIR)/%.c
 
334
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
 
335
        $(COMPILE.c) -o $@ $<
 
336
 
 
337
$(ARDUINOLIBTMP)/%.o: $(ARDUINOSRCDIR)/%.cpp
 
338
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
 
339
        $(COMPILE.cpp) -o $@ $<
 
340
 
 
341
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/%.c
 
342
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
 
343
        $(COMPILE.c) -o $@ $<
 
344
 
 
345
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/%.cpp
 
346
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
 
347
        $(COMPILE.cpp) -o $@ $<
 
348
 
 
349
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/utility/%.c
 
350
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
 
351
        $(COMPILE.c) -o $@ $<
 
352
 
 
353
$(ARDUINOLIBTMP)/%.o: $(ARDUINODIR)/libraries/*/utility/%.cpp
 
354
        @test -d $(ARDUINOLIBTMP) || mkdir $(ARDUINOLIBTMP)
374
355
        $(COMPILE.cpp) -o $@ $<