summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-12-01 22:10:29 +0100
committerChristian Pointner <equinox@spreadspace.org>2015-12-01 22:10:29 +0100
commitebf5e854c35985f27c08e30d6da76c4aa1938b1d (patch)
tree131f1043985d280117fc67a57e3ac1ff840c73be /contrib
parentupgrade of LUFA (diff)
FastLED 3.1 is now released
Diffstat (limited to 'contrib')
-rw-r--r--contrib/Makefile17
1 files changed, 8 insertions, 9 deletions
diff --git a/contrib/Makefile b/contrib/Makefile
index ff920b2..c76db20 100644
--- a/contrib/Makefile
+++ b/contrib/Makefile
@@ -22,8 +22,9 @@
##
LUFA_VERSION := 151115
+FASTLED_VERSION := v3.1.0
-all: download-lufa update-fastled update-teensy-loader
+all: download-lufa download-fastled update-teensy-loader
download-lufa: LUFA-${LUFA_VERSION}.zip
@@ -31,17 +32,15 @@ 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
- git -C FastLED checkout b3e1d2645f466040d51f32f299e609bec574437e
- touch $@
+download-fastled: FastLED-${FASTLED_VERSION}.zip
-update-fastled: .fastled.prepared
- git -C FastLED fetch
+FastLED-${FASTLED_VERSION}.zip:
+ wget "https://github.com/FastLED/FastLED/archive/${FASTLED_VERSION}.zip" -O "$@"
+ unzip $@
-.teesy-loader.prepared:
+.teensy-loader.prepared:
git clone https://github.com/PaulStoffregen/teensy_loader_cli.git
touch $@
-update-teensy-loader: .teesy-loader.prepared
+update-teensy-loader: .teensy-loader.prepared
cd teensy_loader_cli; git pull; make