summaryrefslogtreecommitdiff
path: root/contrib/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-07-13 01:08:43 +0200
committerChristian Pointner <equinox@spreadspace.org>2015-07-13 01:08:43 +0200
commit31e7e0aae15e63a09ab458b63409d587ba222e36 (patch)
tree78fa1cd748e5b369c729426e81a5388487b38377 /contrib/Makefile
parentrenamed usb-led2 example to usb-dual-led (diff)
parentsome cleanup (diff)
Merge branch 'fastled'
Diffstat (limited to 'contrib/Makefile')
-rw-r--r--contrib/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/contrib/Makefile b/contrib/Makefile
index c0ad248..5ced434 100644
--- a/contrib/Makefile
+++ b/contrib/Makefile
@@ -23,10 +23,17 @@
LUFA_VERSION := 140928
-all: download-lufa
+all: download-lufa update-fastled
download-lufa: LUFA-${LUFA_VERSION}.zip
LUFA-${LUFA_VERSION}.zip:
wget "http://www.github.com/abcminiuser/lufa/archive/$@" -O "$@"
unzip $@
+
+.fastled.prepared:
+ git clone --branch 'FastLED3.1' https://github.com/FastLED/FastLED.git
+ touch $@
+
+update-fastled: .fastled.prepared
+ cd FastLED/; git pull