/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: edam
  • Date: 2012-03-20 22:14:41 UTC
  • Revision ID: tim@ed.am-20120320221441-1w3uknfaki3u7ohu
build arduino static lib in .lib using full pathnames in object files (so files of the same name but in different locations can co-exist)

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
#
180
180
SERIALDEVGUESS := 0
181
181
ifeq "$(SERIALDEV)" ""
182
182
SERIALDEV := $(firstword $(wildcard \
183
 
        /dev/ttyACM? /dev/ttyUSB? /dev/tty.usbserial* /dev/tty.usbmodem*))
 
183
        /dev/ttyACM? /dev/ttyUSB? /dev/tty.usbmodem*))
184
184
SERIALDEVGUESS := 1
185
185
endif
186
186
 
197
197
# files
198
198
TARGET := $(if $(TARGET),$(TARGET),a.out)
199
199
OBJECTS := $(addsuffix .o, $(basename $(SOURCES)))
200
 
DEPFILES := $(patsubst %, .dep/%.dep, $(SOURCES))
201
200
ARDUINOCOREDIR := $(ARDUINODIR)/hardware/arduino/cores/arduino
202
201
ARDUINOLIB := .lib/arduino.a
203
202
ARDUINOLIBLIBSDIR := $(ARDUINODIR)/libraries
245
244
endif
246
245
 
247
246
# flags
248
 
CPPFLAGS := -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections
249
 
CPPFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
250
 
CPPFLAGS += -mmcu=$(BOARD_BUILD_MCU)
251
 
CPPFLAGS += -DF_CPU=$(BOARD_BUILD_FCPU) -DARDUINO=$(ARDUINOCONST)
252
 
CPPFLAGS += -I. -Iutil -Iutility -I$(ARDUINOCOREDIR)
253
 
CPPFLAGS += -I$(ARDUINODIR)/hardware/arduino/variants/$(BOARD_BUILD_VARIANT)/
254
 
CPPFLAGS += $(addprefix -I$(ARDUINODIR)/libraries/, $(LIBRARIES))
255
 
CPPFLAGS += $(patsubst %, -I$(ARDUINODIR)/libraries/%/utility, $(LIBRARIES))
256
 
CPPDEPFLAGS = -MMD -MP -MF .dep/$<.dep
257
 
CPPINOFLAGS := -x c++ -include $(ARDUINOCOREDIR)/Arduino.h
 
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)
258
256
AVRDUDEFLAGS := $(addprefix -C , $(AVRDUDECONF)) -DV
259
257
AVRDUDEFLAGS += -p $(BOARD_BUILD_MCU) -P $(SERIALDEV)
260
258
AVRDUDEFLAGS += -c $(BOARD_UPLOAD_PROTOCOL) -b $(BOARD_UPLOAD_SPEED)
261
259
LINKFLAGS := -Os -Wl,--gc-sections -mmcu=$(BOARD_BUILD_MCU)
262
260
 
263
 
# figure out which arg to use with stty (for OS X, GNU and busybox stty)
264
 
STTYFARG := $(shell stty --help 2>&1 | \
265
 
        grep -q 'illegal option' && echo -f || echo -F)
266
 
 
267
 
# include dependencies
268
 
ifneq "$(MAKECMDGOALS)" "clean"
269
 
-include $(DEPFILES)
270
 
endif
 
261
# figure out which arg to use with stty
 
262
STTYFARG := $(shell stty --help > /dev/null 2>&1 && echo -F || echo -f)
271
263
 
272
264
# default rule
273
265
.DEFAULT_GOAL := all
281
273
 
282
274
target: $(TARGET).hex
283
275
 
284
 
upload: target
 
276
upload:
285
277
        @echo "\nUploading to board..."
286
278
        @test -n "$(SERIALDEV)" || { \
287
279
                echo "error: SERIALDEV could not be determined automatically." >&2; \
295
287
clean:
296
288
        rm -f $(OBJECTS)
297
289
        rm -f $(TARGET).elf $(TARGET).hex $(ARDUINOLIB) *~
298
 
        rm -rf .lib .dep
 
290
        rm -rf .lib
299
291
 
300
292
boards:
301
293
        @echo Available values for BOARD:
302
 
        @sed -nEe '/^#/d; /^[^.]+\.name=/p' $(BOARDS_FILE) | \
303
 
                sed -Ee 's/([^.]+)\.name=(.*)/\1            \2/' \
304
 
                        -e 's/(.{12}) *(.*)/\1 \2/'
 
294
        @sed -ne '/^#/d;s/^\(.*\).name=\(.*\)/\1            \2/;T' \
 
295
                -e 's/\(.\{12\}\) *\(.*\)/\1 \2/;p' $(BOARDS_FILE)
305
296
 
306
297
monitor:
307
298
        @test -n "$(SERIALDEV)" || { \
328
319
$(TARGET).elf: $(ARDUINOLIB) $(OBJECTS)
329
320
        $(CC) $(LINKFLAGS) $(OBJECTS) $(ARDUINOLIB) -o $@
330
321
 
331
 
%.o: %.c
332
 
        mkdir -p .dep/$(dir $<)
333
 
        $(COMPILE.c) $(CPPDEPFLAGS) -o $@ $<
334
 
 
335
 
%.o: %.cpp
336
 
        mkdir -p .dep/$(dir $<)
337
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
338
 
 
339
 
%.o: %.cc
340
 
        mkdir -p .dep/$(dir $<)
341
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
342
 
 
343
 
%.o: %.C
344
 
        mkdir -p .dep/$(dir $<)
345
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $<
 
322
#%.o: %.c
 
323
#       $(COMPILE.c) -o $@ $<
346
324
 
347
325
%.o: %.ino
348
 
        mkdir -p .dep/$(dir $<)
349
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ $(CPPINOFLAGS) $<
 
326
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
350
327
 
351
328
%.o: %.pde
352
 
        mkdir -p .dep/$(dir $<)
353
 
        $(COMPILE.cpp) $(CPPDEPFLAGS) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
 
329
        $(COMPILE.cpp) -o $@ -x c++ -include $(ARDUINOCOREDIR)/Arduino.h $<
354
330
 
355
331
# building the arduino library
356
332