20 lines
571 B
Makefile
20 lines
571 B
Makefile
# Makefile - hhl - /usr/src/world/binutils
|
|
# Copyright 2020 Nathan Fisher <nfisher.sr@gmail.com>
|
|
#
|
|
distname = binutils
|
|
include world.mk
|
|
|
|
install_cmd = $(MAKE) DESTDIR=$(DESTDIR) -C $(objdir) install || true
|
|
|
|
config_opts += --host=$(tgt)
|
|
config_opts += --target=$(tgt)
|
|
config_opts += --with-build-sysroot=$(DESTDIR)
|
|
config_opts += --enable-gold
|
|
config_opts += --enable-ld=default
|
|
config_opts += --enable-plugins
|
|
config_opts += --enable-shared
|
|
config_opts += --disable-werror
|
|
config_opts += --enable-64-bit-bfd
|
|
config_opts += --with-system-zlib
|
|
|
|
include targets.mk
|