diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-06-30 21:44:05 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-06-30 21:44:05 +0000 |
commit | 87cb557dcb99ce3a587ef93122415244c007032d (patch) | |
tree | bcca24ebfb6912965bcc6aed61d9046af5913b02 /toolchain/uClibc/utils | |
parent | a8311020d66c4da2c9052c5c9cd8df178cae3671 (diff) | |
download | master-187ad058-87cb557dcb99ce3a587ef93122415244c007032d.tar.gz master-187ad058-87cb557dcb99ce3a587ef93122415244c007032d.tar.bz2 master-187ad058-87cb557dcb99ce3a587ef93122415244c007032d.zip |
uClibc: split the package into the main directory and the headers/ and utils/ subdirectories to clean up build order and fix quilt support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32557 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/uClibc/utils')
-rw-r--r-- | toolchain/uClibc/utils/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/toolchain/uClibc/utils/Makefile b/toolchain/uClibc/utils/Makefile new file mode 100644 index 0000000000..d9efda0e93 --- /dev/null +++ b/toolchain/uClibc/utils/Makefile @@ -0,0 +1,24 @@ +PATH_PREFIX=.. + +include ../common.mk + +HOST_STAMP_BUILT:=$(HOST_BUILD_DIR)/.utils_built +HOST_STAMP_INSTALLED:=$(TOOLCHAIN_DIR)/stamp/.uclibc_utils_installed + +define Host/Compile + $(SED) 's,^CROSS=.*,CROSS=$(TARGET_CROSS),g' $(HOST_BUILD_DIR)/Rules.mak + $(UCLIBC_MAKE) $(TOOLCHAIN_JOBS) PREFIX= utils +endef + +define Host/Install + $(INSTALL_DIR) $(TOOLCHAIN_DIR)/bin + $(INSTALL_BIN) \ + $(HOST_BUILD_DIR)/utils/ldd \ + $(TOOLCHAIN_DIR)/bin/ + $(INSTALL_DIR) $(TOOLCHAIN_DIR)/sbin + $(INSTALL_BIN) \ + $(HOST_BUILD_DIR)/utils/ldconfig \ + $(TOOLCHAIN_DIR)/sbin/ +endef + +$(eval $(call HostBuild)) |