mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-16 22:46:16 +02:00
db73773bde
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32557 3c298f89-4303-0410-b956-a3cf2f4a3e73
27 lines
557 B
Makefile
27 lines
557 B
Makefile
PATH_PREFIX:=..
|
|
|
|
include ../common.mk
|
|
|
|
HOST_STAMP_BUILT:=$(HOST_BUILD_DIR)/.headers_built
|
|
HOST_STAMP_INSTALLED:=$(TOOLCHAIN_DIR)/stamp/.uclibc_headers_installed
|
|
|
|
define Host/Compile
|
|
|
|
endef
|
|
|
|
define Host/Install
|
|
PATH='$(TARGET_PATH)' $(MAKE) -C $(HOST_BUILD_DIR) \
|
|
PREFIX="$(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/" \
|
|
DEVEL_PREFIX=/ \
|
|
RUNTIME_PREFIX="$(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/" \
|
|
HOSTCC="$(HOSTCC)" \
|
|
CC="$(TARGET_CC)" \
|
|
CPU_CFLAGS="$(TARGET_CFLAGS)" \
|
|
ARCH="$(CONFIG_ARCH)" \
|
|
pregen \
|
|
install_headers
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|
|
|