diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-31 12:09:14 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-31 12:09:46 +0200 |
commit | 96e02f728fe6d396d81cf2267563c54f8ea95a77 (patch) | |
tree | 98c8f6ec48919550dfb9702c3696d5d02671ff02 /toolchain/binutils | |
parent | 48d6cb7f6d711aaf6dbb043d98720550adc354a2 (diff) |
add support for bfin toolchain creation
Diffstat (limited to 'toolchain/binutils')
-rw-r--r-- | toolchain/binutils/Makefile.inc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/toolchain/binutils/Makefile.inc b/toolchain/binutils/Makefile.inc index a1ecfe2e3..8478f3ecf 100644 --- a/toolchain/binutils/Makefile.inc +++ b/toolchain/binutils/Makefile.inc @@ -2,8 +2,17 @@ # material, please see the LICENCE file in the top-level directory. PKG_NAME:= binutils +ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_24),y) PKG_VERSION:= 2.24 PKG_MD5SUM:= a5dd5dd2d212a282cc1d4a84633e0d88 PKG_RELEASE:= 1 PKG_SITES:= ${MASTER_SITE_GNU:=binutils/} +DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz +endif +ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_22),y) +PKG_VERSION:= 2.22 +PKG_MD5SUM:= a5dd5dd2d212a282cc1d4a84633e0d88 +PKG_RELEASE:= 1 +PKG_SITES:= ${MASTER_SITE_GNU:=binutils/} DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz +endif |