/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 13:04:29 UTC
  • Revision ID: tim@ed.am-20120310130429-310w5ejo968mc6mo
cleaned-up notes

Show diffs side-by-side

added added

removed removed

2
2
#
3
3
#                         edam's Arduino makefile
4
4
#_______________________________________________________________________________
5
 
#                                                                 version 0.4dev
 
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.
 
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
180
181
SERIALDEVGUESS := 0
181
182
ifeq "$(SERIALDEV)" ""
182
183
SERIALDEV := $(firstword $(wildcard \
183
 
        /dev/ttyACM? /dev/ttyUSB? /dev/tty.usbserial* /dev/tty.usbmodem*))
 
184
        /dev/ttyACM? /dev/ttyUSB? /dev/tty.usbmodem*))
184
185
SERIALDEVGUESS := 1
185
186
endif
186
187
 
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
 
283
 
upload: target
 
279
upload:
284
280
        @echo "\nUploading to board..."
285
281
        @test -n "$(SERIALDEV)" || { \
286
282
                echo "error: SERIALDEV could not be determined automatically." >&2; \
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:
301
 
        @sed -ne '/^#/d; /^[^.]\+\.name=/p' $(BOARDS_FILE) | \
302
 
                sed -e 's/\([^.]\+\)\.name=\(.*\)/\1            \2/' \
303
 
                        -e 's/\(.\{12\}\) *\(.*\)/\1 \2/'
 
297
        @sed -ne '/^#/d;s/^\(.*\).name=\(.*\)/\1            \2/;T' \
 
298
                -e 's/\(.\{12\}\) *\(.*\)/\1 \2/;p' $(BOARDS_FILE)
304
299
 
305
300
monitor:
306
301
        @test -n "$(SERIALDEV)" || { \
327
322
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
328
323
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
329
324
 
330
 
%.o: %.c
331
 
        mkdir -p .dep/$(dir $<)
332
 
        $(COMPILE.c) $(CPPDEPFLAGS) -o $@ $<
333
 
 
334
 
%.o: %.cpp
335
 
        mkdir -p .dep/$(dir $<)
336
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
337
 
 
338
 
%.o: %.cc
339
 
        mkdir -p .dep/$(dir $<)
340
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
341
 
 
342
 
%.o: %.C
343
 
        mkdir -p .dep/$(dir $<)
344
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
345
 
 
346
325
%.o: %.ino
347
 
        mkdir -p .dep/$(dir $<)
348
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
 
326
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
349
327
 
350
328
%.o: %.pde
351
 
        mkdir -p .dep/$(dir $<)
352
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
 
329
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOSRCDIR)/Arduino.h $<
353
330
 
354
331
# building the arduino library
355
332
 
356
333
$(ARDUINOLIB): $(ARDUINOLIBOBJS)
357
334
        $(AR) rcs $@ $?
358
 
 
359
 
.lib/%.c.o: %.c
360
 
        mkdir -p $(dir $@)
361
 
        $(COMPILE.c) -o $@ $<
362
 
 
363
 
.lib/%.cpp.o: %.cpp
364
 
        mkdir -p $(dir $@)
365
 
        $(COMPILE.cpp) -o $@ $<
366
 
 
367
 
.lib/%.cc.o: %.cc
368
 
        mkdir -p $(dir $@)
369
 
        $(COMPILE.cpp) -o $@ $<
370
 
 
371
 
.lib/%.C.o: %.C
372
 
        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)
373
361
        $(COMPILE.cpp) -o $@ $<