Files
Felix Fietkau 2911932fe5 AA: eglibc: sync with trunk, delete old versions
Fixes build errors in the RPC code and adds parallel build support

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 37596
2013-07-29 07:22:31 +00:00

28 lines
589 B
Makefile

PATH_PREFIX := .
VARIANT:=final
HOST_BUILD_PARALLEL:=1
include ./common.mk
define Host/Compile
$(MAKE) -C $(CUR_BUILD_DIR) all PARALLELMFLAGS="$(HOST_JOBS)"
endef
define Host/Install
$(call Host/SetToolchainInfo)
$(MAKE) -C $(CUR_BUILD_DIR) \
install_root="$(TOOLCHAIN_DIR)" \
install
( cd $(TOOLCHAIN_DIR) ; \
for d in lib usr/lib ; do \
for f in libc.so libpthread.so libgcc_s.so ; do \
if [ -f $$$$d/$$$$f -a ! -L $$$$d/$$$$f ] ; then \
$(SED) 's,/usr/lib/,,g;s,/lib/,,g' $$$$d/$$$$f ; \
fi \
done \
done \
)
endef
$(eval $(call HostBuild))