summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-06-30 22:46:39 +0200
committerChristian Pointner <equinox@spreadspace.org>2015-06-30 22:46:39 +0200
commit9a91d4dedc345f97fad0da2a032498e9953129f3 (patch)
tree1e44e10535294769c700a9347e620a0c6538c6b7
parentrenamed usb-led2 example to usb-dual-led (diff)
started import of FastLED
-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