18 lines
452 B
Makefile
18 lines
452 B
Makefile
|
prepare:
|
||
|
git clone https://mirrors.nav.ro/gnu/binutils/binutils-2.10.1.tar.gz binutils
|
||
|
cd binutils
|
||
|
make:
|
||
|
@../configure --prefix=${PREFIX}/usr \
|
||
|
--enable-gold \
|
||
|
--enable-ld=default \
|
||
|
--enable-plugins \
|
||
|
--enable-shared \
|
||
|
--disable-werror \
|
||
|
--enable-64-bit-bfd \
|
||
|
--with-system-zlib
|
||
|
make tooldir=${PREFIX}/usr
|
||
|
install:
|
||
|
make install tooldir=${PREFIX}/usr DESTDIR="${PREFIX}"
|
||
|
uninstall:
|
||
|
make uninstall
|