/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-05-26 12:09:36 UTC
  • Revision ID: tim@ed.am-20120526120936-udje92i2dogga25y
updated boards goal to work on OS X (explicitly use extended REs)

Show diffs side-by-side

added added

removed removed

298
298
 
299
299
boards:
300
300
        @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/'
 
301
        @sed -nEe '/^#/d; /^[^.]+\.name=/p' $(BOARDS_FILE) | \
 
302
                sed -Ee 's/([^.]+)\.name=(.*)/\1            \2/' \
 
303
                        -e 's/(.{12}) *(.*)/\1 \2/'
304
304
 
305
305
monitor:
306
306
        @test -n "$(SERIALDEV)" || { \