summaryrefslogtreecommitdiff
path: root/toolchain/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-01-14 12:19:17 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-01-14 12:19:26 +0100
commit3833c6cfdaaefe5d535edaf94ae28f743726c7f3 (patch)
tree23124cf85c0e90bd1248d6b772ae1617e459008b /toolchain/Makefile
parente35fc26ad55f836f5b7ad1291b7dc205c02edf20 (diff)
toolchain does not need libelf
Diffstat (limited to 'toolchain/Makefile')
-rw-r--r--toolchain/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolchain/Makefile b/toolchain/Makefile
index 0ac3a5dba..e90feb42d 100644
--- a/toolchain/Makefile
+++ b/toolchain/Makefile
@@ -3,7 +3,7 @@
# Steps to build toolchains
# 1) build and install binutils
-# 2) build and install mpfr, mpc, libelf and gmp
+# 2) build and install mpfr, mpc and gmp
# 3) build and install initial gcc
# 4) install kernel-headers
# 5) build and install full libc
@@ -12,7 +12,7 @@
include $(ADK_TOPDIR)/rules.mk
-TARGETS:=binutils gmp mpfr mpc libelf
+TARGETS:=binutils gmp mpfr mpc
ifeq ($(ADK_BUILD_COMPILER_GCC),y)
TARGETS+=gcc
@@ -67,7 +67,7 @@ clean: $(TARGETS_CLEAN)
download: $(DOWNLOAD)
final: $(FINAL)
-$(COMPILER)-configure: binutils-install gmp-install mpfr-install mpc-install libelf-install
+$(COMPILER)-configure: binutils-install gmp-install mpfr-install mpc-install
ifeq ($(ADK_TARGET_LIB_NEWLIB),y)
$(CLIB)-install: $(COMPILER)-configure
else