/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: Tim Marston
  • Date: 2012-03-10 12:31:16 UTC
  • Revision ID: tim@ed.am-20120310123116-l348p5btgecmdj1q
added realtime clock test

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.
 
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
 
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))))
 
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)) ))))
208
211
ifeq "$(AVRDUDECONF)" ""
209
212
ifeq "$(AVRDUDE)" "$(ARDUINODIR)/hardware/tools/avr/bin/avrdude"
210
213
AVRDUDECONF := $(ARDUINODIR)/hardware/tools/avr/etc/avrdude.conf
249
252
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
250
253
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
251
254
CPPFLAGS += -DF_CPU=$(BOARD_BUILD_FCPU) -DARDUINO=$(ARDUINOCONST)
252
 
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOCOREDIR)
 
255
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOSRCDIR)
253
256
CPPFLAGS += -I$(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
254
257
CPPFLAGS += $(addprefix -I$(ARDUINODIR)/libraries/, $(LIBRARIES))
255
258
CPPFLAGS += $(patsubst %, -I$(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
256
 
CPPDEPFLAGS = -MMD -MP -MF .dep/$<.dep
257
 
CPPINOFLAGS := -x c++ -include $(ARDUINOCOREDIR)/Arduino.h
258
259
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
259
260
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
260
261
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
263
264
# figure out which arg to use with stty
264
265
STTYFARG := $(shell stty --help > /dev/null 2>&1 && echo -F || echo -f)
265
266
 
266
 
# include dependencies
267
 
ifneq "$(MAKECMDGOALS)" "clean"
268
 
-include $(DEPFILES)
269
 
endif
270
 
 
271
267
# default rule
272
268
.DEFAULT_GOAL := all
273
269
 
276
272
 
277
273
.PHONY: all target upload clean boards monitor size
278
274
 
279
 
all: target
 
275
all: target upload
280
276
 
281
277
target: $(TARGET).hex
282
278
 
294
290
clean:
295
291
        rm -f $(OBJECTS)
296
292
        rm -f $(TARGET).elf $(TARGET).hex $(ARDUINOLIB) *~
297
 
        rm -rf .lib .dep
 
293
        rm -rf $(ARDUINOLIBTMP)
298
294
 
299
295
boards:
300
296
        @echo Available values for BOARD:
326
322
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
327
323
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
328
324
 
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
 
 
345
325
%.o: %.ino
346
 
        mkdir -p .dep/$(dir $<)
347
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
 
326
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
348
327
 
349
328
%.o: %.pde
350
 
        mkdir -p .dep/$(dir $<)
351
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
 
329
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
352
330
 
353
331
# building the arduino library
354
332
 
355
333
$(ARDUINOLIB): $(ARDUINOLIBOBJS)
356
334
        $(AR) rcs $@ $?
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 $@)
 
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)
372
361
        $(COMPILE.cpp) -o $@ $<