diff options
author | Christian Pointner <equinox@helsinki.at> | 2014-05-31 21:04:33 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2014-05-31 21:04:33 (GMT) |
commit | 07491040c60fe1c1a1876ce6d1c2c66484e6aa02 (patch) | |
tree | d4fe2d553c3183058f3a4143c43a9d3051fe2b04 /contrib/Makefile | |
parent | 80ccc791376752181ce4b109809a257bd16e1252 (diff) |
updated avr utils
Diffstat (limited to 'contrib/Makefile')
-rw-r--r-- | contrib/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/contrib/Makefile b/contrib/Makefile index 28bebc7..858cc90 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -22,11 +22,12 @@ ##
LUFA_VERSION := 120219
-all: download
-download: LUFA-${LUFA_VERSION}.zip
+all: download-lufa
+
+download-lufa: LUFA-${LUFA_VERSION}.zip
LUFA-${LUFA_VERSION}.zip:
- wget "http://lufa-lib.googlecode.com/files/LUFA-${LUFA_VERSION}.zip" -O "LUFA-${LUFA_VERSION}.zip"
- unzip LUFA-${LUFA_VERSION}.zip
+ wget "http://lufa-lib.googlecode.com/files/$@" -O "$@"
+ unzip $@
|