/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-03-20 22:14:41 UTC
  • Revision ID: tim@ed.am-20120320221441-1w3uknfaki3u7ohu
build arduino static lib in .lib using full pathnames in object files (so files of the same name but in different locations can co-exist)

Show diffs side-by-side

added added

removed removed

2
2
#
3
3
#                         edam's Arduino makefile
4
4
#_______________________________________________________________________________
5
 
#                                                                    version 0.3
 
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 and uploads it.
 
120
#              target.
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
#
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))
170
172
 
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)))
175
176
 
176
177
endif
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)
194
196
 
195
197
# files
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
ARDUINOCOREDIR := $(ARDUINODIR)/hardware/arduino/cores/arduino
 
201
ARDUINOLIB := .lib/arduino.a
 
202
ARDUINOLIBLIBSDIR := $(ARDUINODIR)/libraries
 
203
ARDUINOLIBLIBSPATH := $(foreach lib, $(LIBRARIES), \
 
204
        $(ARDUINODIR)/libraries/$(lib)/ $(ARDUINODIR)/libraries/$(lib)/utility/ )
 
205
ARDUINOLIBOBJS := $(foreach dir, $(ARDUINOCOREDIR) $(ARDUINOLIBLIBSPATH), \
 
206
        $(patsubst %, .lib/%.o, $(wildcard $(addprefix $(dir)/, *.c *.cpp))))
208
207
ifeq "$(AVRDUDECONF)" ""
209
208
ifeq "$(AVRDUDE)" "$(ARDUINODIR)/hardware/tools/avr/bin/avrdude"
210
209
AVRDUDECONF := $(ARDUINODIR)/hardware/tools/avr/etc/avrdude.conf
245
244
endif
246
245
 
247
246
# flags
248
 
CPPFLAGS := -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
249
 
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
250
 
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
251
 
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))
 
247
CPPFLAGS_S := -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
 
248
CPPFLAGS_S += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
 
249
CPPFLAGS_S += -mmcu=$(BOARD_BUILD_MCU)
 
250
CPPFLAGS_S += -DF_CPU=$(BOARD_BUILD_FCPU) -DARDUINO=$(ARDUINOCONST)
 
251
CPPFLAGS_S += -I. -Iutil -Iutility -I$(ARDUINOCOREDIR)
 
252
CPPFLAGS_S += -I$(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
 
253
CPPFLAGS_S += $(addprefix -I$(ARDUINODIR)/libraries/, $(LIBRARIES))
 
254
CPPFLAGS_S += $(patsubst %, -I$(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
 
255
CPPFLAGS = $(CPPFLAGS_S)
256
256
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
257
257
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
258
258
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
267
267
#_______________________________________________________________________________
268
268
#                                                                          RULES
269
269
 
270
 
.PHONY: all target upload clean boards monitor
 
270
.PHONY: all target upload clean boards monitor size
271
271
 
272
 
all: target upload
 
272
all: target
273
273
 
274
274
target: $(TARGET).hex
275
275
 
287
287
clean:
288
288
        rm -f $(OBJECTS)
289
289
        rm -f $(TARGET).elf $(TARGET).hex $(ARDUINOLIB) *~
290
 
        rm -rf $(ARDUINOLIBTMP)
 
290
        rm -rf .lib
291
291
 
292
292
boards:
293
293
        @echo Available values for BOARD:
306
306
                echo; }
307
307
        screen $(SERIALDEV)
308
308
 
 
309
size: $(TARGET).elf
 
310
        echo && $(AVRSIZE) --format=avr --mcu=$(BOARD_BUILD_MCU) $(TARGET).elf
 
311
 
309
312
# building the target
310
313
 
311
314
$(TARGET).hex: $(TARGET).elf
316
319
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
317
320
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
318
321
 
 
322
#%.o: %.c
 
323
#       $(COMPILE.c) -o $@ $<
 
324
 
319
325
%.o: %.ino
320
 
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
 
326
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
321
327
 
322
328
%.o: %.pde
323
 
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
 
329
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
324
330
 
325
331
# building the arduino library
326
332
 
327
333
$(ARDUINOLIB): $(ARDUINOLIBOBJS)
328
334
        $(AR) rcs $@ $?
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)
 
335
 
 
336
.lib/%.c.o: %.c
 
337
        mkdir -p $(dir $@)
 
338
        $(COMPILE.c) -o $@ $<
 
339
 
 
340
.lib/%.cpp.o: %.cpp
 
341
        mkdir -p $(dir $@)
 
342
        $(COMPILE.cpp) -o $@ $<
 
343
 
 
344
.lib/%.cc.o: %.cc
 
345
        mkdir -p $(dir $@)
 
346
        $(COMPILE.cpp) -o $@ $<
 
347
 
 
348
.lib/%.C.o: %.C
 
349
        mkdir -p $(dir $@)
355
350
        $(COMPILE.cpp) -o $@ $<