/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: Tim Marston
  • Date: 2012-03-12 18:05:15 UTC
  • Revision ID: tim@ed.am-20120312180515-33vfg8omarjitsm1
added 'size' goal

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
#
171
171
        $(wildcard $(addprefix utility/, *.c *.cc *.cpp))
172
172
 
173
173
# automatically determine included libraries
174
 
LIBRARIES := $(filter $(notdir $(wildcard $(ARDUINODIR)/libraries/*)), \
 
174
ARDUINOLIBSAVAIL := $(notdir $(wildcard $(ARDUINODIR)/libraries/*))
 
175
LIBRARIES := $(filter $(ARDUINOLIBSAVAIL), \
175
176
        $(shell sed -ne "s/^ *\# *include *[<\"]\(.*\)\.h[>\"]/\1/p" $(SOURCES)))
176
177
 
177
178
endif
197
198
# files
198
199
TARGET := $(if $(TARGET),$(TARGET),a.out)
199
200
OBJECTS := $(addsuffix .o, $(basename $(SOURCES)))
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))))
 
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)) ))))
207
211
ifeq "$(AVRDUDECONF)" ""
208
212
ifeq "$(AVRDUDE)" "$(ARDUINODIR)/hardware/tools/avr/bin/avrdude"
209
213
AVRDUDECONF := $(ARDUINODIR)/hardware/tools/avr/etc/avrdude.conf
244
248
endif
245
249
 
246
250
# flags
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)
 
251
CPPFLAGS := -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
 
252
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
 
253
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
 
254
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))
256
259
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
257
260
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
258
261
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
269
272
 
270
273
.PHONY: all target upload clean boards monitor size
271
274
 
272
 
all: target
 
275
all: target upload
273
276
 
274
277
target: $(TARGET).hex
275
278
 
287
290
clean:
288
291
        rm -f $(OBJECTS)
289
292
        rm -f $(TARGET).elf $(TARGET).hex $(ARDUINOLIB) *~
290
 
        rm -rf .lib
 
293
        rm -rf $(ARDUINOLIBTMP)
291
294
 
292
295
boards:
293
296
        @echo Available values for BOARD:
319
322
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
320
323
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
321
324
 
322
 
#%.o: %.c
323
 
#       $(COMPILE.c) -o $@ $<
324
 
 
325
325
%.o: %.ino
326
 
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
 
326
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
327
327
 
328
328
%.o: %.pde
329
 
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
 
329
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
330
330
 
331
331
# building the arduino library
332
332
 
333
333
$(ARDUINOLIB): $(ARDUINOLIBOBJS)
334
334
        $(AR) rcs $@ $?
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 $@)
 
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)
350
361
        $(COMPILE.cpp) -o $@ $<