/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to arduino.mk

  • Committer: edam
  • Date: 2012-03-20 22:13:38 UTC
  • Revision ID: tim@ed.am-20120320221338-4zvmyesujc0zwwsx
updated arduino makefile

Show diffs side-by-side

added added

removed removed

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
#
171
171
        $(wildcard $(addprefix utility/, *.c *.cc *.cpp))
172
172
 
173
173
# automatically determine included libraries
174
 
ARDUINOLIBSAVAIL := $(notdir $(wildcard $(ARDUINODIR)/libraries/*))
175
 
LIBRARIES := $(filter $(ARDUINOLIBSAVAIL), \
 
174
LIBRARIES := $(filter $(notdir $(wildcard $(ARDUINODIR)/libraries/*)), \
176
175
        $(shell sed -ne "s/^ *\# *include *[<\"]\(.*\)\.h[>\"]/\1/p" $(SOURCES)))
177
176
 
178
177
endif
198
197
# files
199
198
TARGET := $(if $(TARGET),$(TARGET),a.out)
200
199
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)) ))))
 
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))))
211
208
ifeq "$(AVRDUDECONF)" ""
212
209
ifeq "$(AVRDUDE)" "$(ARDUINODIR)/hardware/tools/avr/bin/avrdude"
213
210
AVRDUDECONF := $(ARDUINODIR)/hardware/tools/avr/etc/avrdude.conf
252
249
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
253
250
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
254
251
CPPFLAGS += -DF_CPU=$(BOARD_BUILD_FCPU) -DARDUINO=$(ARDUINOCONST)
255
 
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOSRCDIR)
 
252
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOCOREDIR)
256
253
CPPFLAGS += -I$(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
257
254
CPPFLAGS += $(addprefix -I$(ARDUINODIR)/libraries/, $(LIBRARIES))
258
255
CPPFLAGS += $(patsubst %, -I$(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
 
256
CPPDEPFLAGS = -MMD -MP -MF .dep/$<.dep
 
257
CPPINOFLAGS := -x c++ -include $(ARDUINOCOREDIR)/Arduino.h
259
258
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
260
259
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
261
260
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
264
263
# figure out which arg to use with stty
265
264
STTYFARG := $(shell stty --help > /dev/null 2>&1 && echo -F || echo -f)
266
265
 
 
266
# include dependencies
 
267
ifneq "$(MAKECMDGOALS)" "clean"
 
268
-include $(DEPFILES)
 
269
endif
 
270
 
267
271
# default rule
268
272
.DEFAULT_GOAL := all
269
273
 
272
276
 
273
277
.PHONY: all target upload clean boards monitor size
274
278
 
275
 
all: target upload
 
279
all: target
276
280
 
277
281
target: $(TARGET).hex
278
282
 
290
294
clean:
291
295
        rm -f $(OBJECTS)
292
296
        rm -f $(TARGET).elf $(TARGET).hex $(ARDUINOLIB) *~
293
 
        rm -rf $(ARDUINOLIBTMP)
 
297
        rm -rf .lib .dep
294
298
 
295
299
boards:
296
300
        @echo Available values for BOARD:
322
326
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
323
327
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
324
328
 
 
329
%.o: %.c
 
330
        mkdir -p .dep/$(dir $<)
 
331
        $(COMPILE.c) $(CPPDEPFLAGS) -o $@ $<
 
332
 
 
333
%.o: %.cpp
 
334
        mkdir -p .dep/$(dir $<)
 
335
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
 
336
 
 
337
%.o: %.cc
 
338
        mkdir -p .dep/$(dir $<)
 
339
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
 
340
 
 
341
%.o: %.C
 
342
        mkdir -p .dep/$(dir $<)
 
343
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
 
344
 
325
345
%.o: %.ino
326
 
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
 
346
        mkdir -p .dep/$(dir $<)
 
347
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
327
348
 
328
349
%.o: %.pde
329
 
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
 
350
        mkdir -p .dep/$(dir $<)
 
351
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
330
352
 
331
353
# building the arduino library
332
354
 
333
355
$(ARDUINOLIB): $(ARDUINOLIBOBJS)
334
356
        $(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)
 
357
 
 
358
.lib/%.c.o: %.c
 
359
        mkdir -p $(dir $@)
 
360
        $(COMPILE.c) -o $@ $<
 
361
 
 
362
.lib/%.cpp.o: %.cpp
 
363
        mkdir -p $(dir $@)
 
364
        $(COMPILE.cpp) -o $@ $<
 
365
 
 
366
.lib/%.cc.o: %.cc
 
367
        mkdir -p $(dir $@)
 
368
        $(COMPILE.cpp) -o $@ $<
 
369
 
 
370
.lib/%.C.o: %.C
 
371
        mkdir -p $(dir $@)
361
372
        $(COMPILE.cpp) -o $@ $<