summaryrefslogtreecommitdiff
path: root/toolchain/libelf/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'toolchain/libelf/Makefile')
-rw-r--r--toolchain/libelf/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/toolchain/libelf/Makefile b/toolchain/libelf/Makefile
deleted file mode 100644
index 5c01902ad..000000000
--- a/toolchain/libelf/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-include $(ADK_TOPDIR)/rules.mk
-include Makefile.inc
-include ../rules.mk
-include ${ADK_TOPDIR}/mk/buildhlp.mk
-
-ifeq (${ADK_MAKE_PARALLEL},y)
-LIBELF_MAKEOPTS+= -j${ADK_MAKE_JOBS}
-endif
-
-$(WRKBUILD)/.configured:
- (cd $(WRKBUILD); \
- $(WRKBUILD)/configure \
- --prefix=/usr \
- --disable-nls \
- --disable-compat \
- --disable-shared \
- --enable-static \
- );
- touch $@
-
-$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured
- $(MAKE) ${LIBELF_MAKEOPTS} -C $(WRKBUILD) all
- touch $@
-
-$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
- $(MAKE) instroot=$(STAGING_HOST_DIR) -C $(WRKBUILD) install
- touch $@
-
-include ${ADK_TOPDIR}/mk/toolchain.mk