summaryrefslogtreecommitdiff
path: root/contrib/Makefile
diff options
context:
space:
mode:
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