diff options
author | Phil Sutter <phil.sutter@viprinet.com> | 2015-02-24 12:46:49 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-28 10:14:21 +0100 |
commit | b35d9328163f84e2d7dc6f2504c5e7c3fffc92dd (patch) | |
tree | 07950fd51bd92f315592dbf2b584a4d97a9856d0 /toolchain/Makefile | |
parent | 9405258299212c12f639e0d200c5721e24c887f3 (diff) |
toolchain: add cross prelinking tool from yoctoproject and hook it into build system
Diffstat (limited to 'toolchain/Makefile')
-rw-r--r-- | toolchain/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/toolchain/Makefile b/toolchain/Makefile index 23f206ee7..e06e58de9 100644 --- a/toolchain/Makefile +++ b/toolchain/Makefile @@ -44,6 +44,9 @@ ifeq ($(ADK_TARGET_ARCH_ARC),) TARGETS+=gdb GDB:=gdb-install endif +ifeq (${ADK_PRELINK},y) +TARGETS+=prelink-cross +endif DOWNLOAD:=kernel-headers-download $(patsubst %,%-download,$(TARGETS)) TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS)) |