/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: 2013-07-19 15:34:42 UTC
  • Revision ID: tim@ed.am-20130719153442-lxcq6bdvcojaveub
detect which libraries to pull in the same way as the IDE; fixes 3

Show diffs side-by-side

added added

removed removed

239
239
$(error There is more than one .pde or .ino file in this directory!)
240
240
endif
241
241
 
242
 
# automatically determine sources and targeet
 
242
# automatically determine sources and target
243
243
TARGET := $(basename $(INOFILE))
244
244
SOURCES := $(INOFILE) \
245
 
        $(wildcard *.c *.cc *.cpp *.C) \
246
 
        $(wildcard $(addprefix util/, *.c *.cc *.cpp *.C)) \
247
 
        $(wildcard $(addprefix utility/, *.c *.cc *.cpp *.C))
248
 
 
249
 
# automatically determine included libraries
250
 
LIBRARIES := $(filter $(notdir $(wildcard $(addsuffix /*, $(LIBRARYPATH)))), \
251
 
        $(shell sed -ne "s/^ *\# *include *[<\"]\(.*\)\.h[>\"]/\1/p" $(SOURCES)))
252
 
 
 
245
        $(wildcard *.c *.cc *.cpp *.C *.s *.S) \
 
246
        $(wildcard $(addprefix util/, *.c *.cc *.cpp *.C *.s *.S)) \
 
247
        $(wildcard $(addprefix utility/, *.c *.cc *.cpp *.C *.s *.S))
 
248
 
 
249
# automatically determine library directories (to pull library sources in from)
 
250
# by matching included headers in poject sources to headers that exist in the
 
251
# roots of any library directories, giving priority to libraries in the order
 
252
# they're in LIBRARYPATH, and then to the alphabetically-greater named library
 
253
# (this is a really stupid way of doing it, but it's how the IDE works -- if
 
254
# it's causing problems, you can override it by setting LIBRARIES manually)
 
255
INCLUDEDHEADERS := \
 
256
        $(shell sed -nre "s/^\s*\#\s*include\s*[<\"](\S+\.h)[>\"].*/\1/p" \
 
257
        $(SOURCES))
 
258
reverse = $(if $(1),$(call reverse,$(wordlist 2,$(words $(1)),$(1)))) \
 
259
        $(firstword $(1))
 
260
LIBRARYHEADERS := $(foreach dir, $(LIBRARYPATH), \
 
261
        $(call reverse, $(sort $(wildcard $(dir)/*))))
 
262
LIBRARYHEADERS := $(foreach dir, $(LIBRARYHEADERS), $(wildcard $(dir)/*.h))
 
263
LIBRARYDIRS := $(foreach hdr, $(INCLUDEDHEADERS), $(patsubst %/$(hdr), %, \
 
264
        $(firstword $(filter %/$(hdr), $(LIBRARYHEADERS)))))
 
265
 
 
266
endif
 
267
 
 
268
# if LIBRARIES is specified, use it
 
269
ifneq "$(LIBRARIES)" ""
 
270
LIBRARYDIRS := $(foreach lib, $(LIBRARIES), \
 
271
        $(firstword $(wildcard $(addsuffix /$(lib), $(LIBRARYPATH)))))
253
272
endif
254
273
 
255
274
# software
258
277
CXX := $(call findsoftware,avr-g++)
259
278
LD := $(call findsoftware,avr-ld)
260
279
AR := $(call findsoftware,avr-ar)
 
280
AS := $(call findsoftware,avr-as)
261
281
OBJCOPY := $(call findsoftware,avr-objcopy)
262
282
AVRDUDE := $(call findsoftware,avrdude)
263
283
AVRSIZE := $(call findsoftware,avr-size)
264
284
 
265
285
# directories
266
286
ARDUINOCOREDIR := $(ARDUINODIR)/hardware/arduino/cores/$(BOARD_BUILD_CORE)
267
 
LIBRARYDIRS := $(foreach lib, $(LIBRARIES), \
268
 
        $(firstword $(wildcard $(addsuffix /$(lib), $(LIBRARYPATH)))))
269
287
LIBRARYDIRS += $(addsuffix /utility, $(LIBRARYDIRS))
270
288
 
271
289
# files
274
292
DEPFILES := $(patsubst %, .dep/%.dep, $(SOURCES))
275
293
ARDUINOLIB := .lib/arduino.a
276
294
ARDUINOLIBOBJS := $(foreach dir, $(ARDUINOCOREDIR) $(LIBRARYDIRS), \
277
 
        $(patsubst %, .lib/%.o, $(wildcard $(addprefix $(dir)/, *.c *.cpp))))
 
295
        $(patsubst %, .lib/%.o, $(wildcard $(addprefix $(dir)/, \
 
296
                *.c *.cc *.cpp *.C *.s *.S))))
278
297
BOOTLOADERHEX := $(addprefix \
279
298
        $(ARDUINODIR)/hardware/arduino/bootloaders/$(BOARD_BOOTLOADER_PATH)/, \
280
299
        $(BOARD_BOOTLOADER_FILE))
397
416
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
398
417
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -lm -o $@
399
418
 
 
419
%.o: %.ino
 
420
        mkdir -p .dep/$(dir $<)
 
421
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
 
422
 
 
423
%.o: %.pde
 
424
        mkdir -p .dep/$(dir $<)
 
425
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
 
426
 
400
427
%.o: %.c
401
428
        mkdir -p .dep/$(dir $<)
402
429
        $(COMPILE.c) $(CPPDEPFLAGS) -o $@ $<
413
440
        mkdir -p .dep/$(dir $<)
414
441
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
415
442
 
416
 
%.o: %.ino
417
 
        mkdir -p .dep/$(dir $<)
418
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
419
 
 
420
 
%.o: %.pde
421
 
        mkdir -p .dep/$(dir $<)
422
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
 
443
%.o: %.S
 
444
        mkdir -p .dep/$(dir $<)
 
445
        $(COMPILE.S) $(CPPDEPFLAGS) -o $@ $<
423
446
 
424
447
# building the arduino library
425
448
 
442
465
        mkdir -p $(dir $@)
443
466
        $(COMPILE.cpp) -o $@ $<
444
467
 
 
468
.lib/%.s.o: %.s
 
469
        mkdir -p $(dir $@)
 
470
        $(COMPILE.s) -o $@ $<
 
471
 
 
472
.lib/%.S.o: %.S
 
473
        mkdir -p $(dir $@)
 
474
        $(COMPILE.S) -o $@ $<
 
475
 
445
476
# Local Variables:
446
477
# mode: makefile
447
478
# tab-width: 4