repo/binutils/Makefile
2021-06-30 00:26:09 +03:00

17 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