build: add generic build template for u-boot packages
[openwrt/openwrt.git] / include / toolchain-build.mk
1 #
2 # Copyright (C) 2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 override CONFIG_AUTOREBUILD=
9 override CONFIG_AUTOREMOVE=
10
11 REAL_STAGING_DIR_HOST:=$(STAGING_DIR_HOST)
12 STAGING_DIR_HOST:=$(TOOLCHAIN_DIR)
13 BUILD_DIR_HOST:=$(BUILD_DIR_TOOLCHAIN)
14
15 include $(INCLUDE_DIR)/host-build.mk
16
17 HOST_STAMP_PREPARED=$(HOST_BUILD_DIR)/.prepared
18
19 define FixupLibdir
20 if [ -d $(1)/lib64 -a \! -L $(1)/lib64 ]; then \
21 mkdir -p $(1)/lib; \
22 mv $(1)/lib64/* $(1)/lib/; \
23 rm -rf $(1)/lib64; \
24 fi
25 ln -sf lib $(1)/lib64
26 endef