diff options
author | Michael Scheidell <scheidell@FreeBSD.org> | 2012-02-23 14:20:36 +0000 |
---|---|---|
committer | Michael Scheidell <scheidell@FreeBSD.org> | 2012-02-23 14:20:36 +0000 |
commit | 20c764411325cd53e20cf05f6453ca93b1e1da9b (patch) | |
tree | 20f6398ed4d65d43008d6c2ccc9976bf0fec8ea3 /devel/arduino-mk/files/Makefile | |
parent | - Update to 1.2.1 [1] (diff) |
Add port devel/arduino-mk: Arduino from the command line
This is a makefile written by Martin Atelier that makes it possible
to build Arduino sketches with gmake. An example sketch and Makefile;
it is installed in share/examples/arduino-mk
PR: ports/156143
Submitted by: Craig Leres <leres@ee.lbl.gov> (maintainer)
Approved by: gabor (mentor, implicit)
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=292122
Diffstat (limited to 'devel/arduino-mk/files/Makefile')
-rw-r--r-- | devel/arduino-mk/files/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/devel/arduino-mk/files/Makefile b/devel/arduino-mk/files/Makefile new file mode 100644 index 000000000000..73431f39377c --- /dev/null +++ b/devel/arduino-mk/files/Makefile @@ -0,0 +1,16 @@ +# @(#) $Id: Makefile 13 2011-12-31 00:07:36Z leres $ (XSE) +# $FreeBSD$ + +TARGET= blink2 + +BOARD_TAG= atmega328 + +ARDUINO_DIR= /usr/local/arduino + +AVRDUDE_ARD_PROGRAMMER= arduino +AVRDUDE_ARD_BAUDRATE= 57600 +ARDUINO_PORT= /dev/arduino + +include $(ARDUINO_DIR)/lib/Arduino.mk + +CPPFLAGS+= -Werror |