1 # SPDX-License-Identifier: GPL-2.0-only
3 # Copyright (C) 2006-2020 OpenWrt.org
5 include $(INCLUDE_DIR
)/download.mk
7 HOST_BUILD_DIR ?
= $(BUILD_DIR_HOST
)/$(PKG_NAME
)$(if
$(PKG_VERSION
),-$(PKG_VERSION
))
8 HOST_INSTALL_DIR ?
= $(HOST_BUILD_DIR
)/host-install
11 HOST_MAKE_J
:=$(if
$(MAKE_JOBSERVER
),$(MAKE_JOBSERVER
) $(if
$(filter 3.
% 4.0 4.1,$(MAKE_VERSION
)),-j
))
13 ifeq ($(strip $(HOST_BUILD_PARALLEL
)),0)
16 HOST_JOBS?
=$(if
$(HOST_BUILD_PARALLEL
),$(HOST_MAKE_J
),-j1
)
19 include $(INCLUDE_DIR
)/unpack.mk
20 include $(INCLUDE_DIR
)/depends.mk
21 include $(INCLUDE_DIR
)/quilt.mk
24 HOST_STAMP_PREPARED
=$(HOST_BUILD_DIR
)/.prepared
$(if
$(HOST_QUILT
)$(DUMP
),,$(shell $(call find_md5
,${CURDIR} $(PKG_FILE_DEPENDS
),))_
$(call confvar
,CONFIG_AUTOREMOVE
$(HOST_PREPARED_DEPENDS
)))
25 HOST_STAMP_CONFIGURED
:=$(HOST_BUILD_DIR
)/.configured
26 HOST_STAMP_BUILT
:=$(HOST_BUILD_DIR
)/.built
27 HOST_BUILD_PREFIX?
=$(if
$(IS_PACKAGE_BUILD
),$(STAGING_DIR_HOSTPKG
),$(STAGING_DIR_HOST
))
28 HOST_STAMP_INSTALLED
:=$(HOST_BUILD_PREFIX
)/stamp
/.
$(PKG_NAME
)_installed
32 include $(INCLUDE_DIR
)/autotools.mk
34 _host_target
:=$(if
$(HOST_QUILT
),,.
)
36 Host
/Patch
:=$(Host
/Patch
/Default
)
37 ifneq ($(strip $(HOST_UNPACK
)),)
38 define Host
/Prepare
/Default
40 [ ! -d .
/src
/ ] ||
$(CP
) .
/src
/* $(HOST_BUILD_DIR
)
46 $(call Host
/Prepare
/Default
)
49 HOST_CONFIGURE_VARS
= \
51 CFLAGS
="$(HOST_CFLAGS)" \
53 CPPFLAGS
="$(HOST_CPPFLAGS)" \
54 LDFLAGS
="$(HOST_LDFLAGS)" \
55 CONFIG_SHELL
="$(SHELL)"
57 HOST_CONFIGURE_ARGS
= \
58 --target
=$(GNU_HOST_NAME
) \
59 --host
=$(GNU_HOST_NAME
) \
60 --build
=$(GNU_HOST_NAME
) \
63 --prefix=$(HOST_BUILD_PREFIX
) \
64 --exec-prefix
=$(HOST_BUILD_PREFIX
) \
65 --sysconfdir
=$(HOST_BUILD_PREFIX
)/etc \
66 --localstatedir
=$(HOST_BUILD_PREFIX
)/var \
67 --sbindir
=$(HOST_BUILD_PREFIX
)/bin
70 CFLAGS
="$(HOST_CFLAGS)" \
71 CPPFLAGS
="$(HOST_CPPFLAGS)" \
72 CXXFLAGS
="$(HOST_CXXFLAGS)" \
73 LDFLAGS
="$(HOST_LDFLAGS)"
77 HOST_CONFIGURE_CMD
= $(BASH
) .
/configure
79 ifeq ($(HOST_OS
),Darwin
)
80 HOST_CONFIG_SITE
:=$(INCLUDE_DIR
)/site
/darwin
83 define Host
/Configure
/Default
84 $(if
$(HOST_CONFIGURE_PARALLEL
),+)(cd
$(HOST_BUILD_DIR
)/$(3); \
85 if
[ -x configure
]; then \
86 $(CP
) $(SCRIPT_DIR
)/config.
{guess
,sub
} $(HOST_BUILD_DIR
)/$(3)/ && \
87 $(HOST_CONFIGURE_VARS
) \
89 $(HOST_CONFIGURE_CMD
) \
90 $(HOST_CONFIGURE_ARGS
) \
97 $(call Host
/Configure
/Default
)
100 define Host
/Compile
/Default
102 $(MAKE
) $(HOST_JOBS
) -C
$(HOST_BUILD_DIR
) \
108 $(call Host
/Compile
/Default
)
111 define Host
/Install
/Default
112 $(call Host
/Compile
/Default
,install)
116 $(call Host
/Install
/Default
,$(HOST_BUILD_PREFIX
))
120 ifneq ($(if
$(HOST_QUILT
),,$(CONFIG_AUTOREBUILD
)),)
121 define HostHost
/Autoclean
122 $(call rdep
,${CURDIR} $(PKG_FILE_DEPENDS
),$(HOST_STAMP_PREPARED
))
123 $(if
$(if
$(Host
/Compile
),$(filter prepare
,$(MAKECMDGOALS
)),1),,$(call rdep
,$(HOST_BUILD_DIR
),$(HOST_STAMP_BUILT
)))
127 define Host
/Exports
/Default
128 $(1) : export ACLOCAL_INCLUDE
=$$(foreach p
,$$(wildcard $$(STAGING_DIR_HOST
)/share
/aclocal
$$(STAGING_DIR_HOST
)/share
/aclocal-
* $(if
$(IS_PACKAGE_BUILD
),$$(STAGING_DIR
)/host
/share
/aclocal
$$(STAGING_DIR_HOSTPKG
)/share
/aclocal
$$(STAGING_DIR
)/host
/share
/aclocal-
*)),-I
$$(p
))
129 $(1) : export STAGING_PREFIX
=$$(HOST_BUILD_PREFIX
)
130 $(1) : export PKG_CONFIG_PATH
=$$(STAGING_DIR_HOST
)/lib
/pkgconfig
:$$(HOST_BUILD_PREFIX
)/lib
/pkgconfig
131 $(1) : export PKG_CONFIG_LIBDIR
=$$(HOST_BUILD_PREFIX
)/lib
/pkgconfig
132 $(if
$(HOST_CONFIG_SITE
),$(1) : export CONFIG_SITE
:=$(HOST_CONFIG_SITE
))
133 $(if
$(IS_PACKAGE_BUILD
),$(1) : export PATH
=$$(TARGET_PATH_PKG
))
135 Host
/Exports
=$(Host
/Exports
/Default
)
140 define HostBuild
/Core
141 $(if
$(HOST_QUILT
),$(Host
/Quilt
))
142 $(if
$(DUMP
),,$(call HostHost
/Autoclean
))
144 $(HOST_STAMP_PREPARED
):
145 @
-rm -rf
$(HOST_BUILD_DIR
)
146 @mkdir
-p
$(HOST_BUILD_DIR
)
147 $(foreach hook
,$(Hooks
/HostPrepare
/Pre
),$(call
$(hook
))$(sep
))
149 $(foreach hook
,$(Hooks
/HostPrepare
/Post
),$(call
$(hook
))$(sep
))
152 $(call Host
/Exports
,$(HOST_STAMP_CONFIGURED
))
153 $(HOST_STAMP_CONFIGURED
): $(HOST_STAMP_PREPARED
)
154 $(foreach hook
,$(Hooks
/HostConfigure
/Pre
),$(call
$(hook
))$(sep
))
155 $(call Host
/Configure
)
156 $(foreach hook
,$(Hooks
/HostConfigure
/Post
),$(call
$(hook
))$(sep
))
159 $(call Host
/Exports
,$(HOST_STAMP_BUILT
))
160 $(HOST_STAMP_BUILT
): $(HOST_STAMP_CONFIGURED
)
161 $(foreach hook
,$(Hooks
/HostCompile
/Pre
),$(call
$(hook
))$(sep
))
163 $(foreach hook
,$(Hooks
/HostCompile
/Post
),$(call
$(hook
))$(sep
))
166 $(call Host
/Exports
,$(HOST_STAMP_INSTALLED
))
167 $(HOST_STAMP_INSTALLED
): $(HOST_STAMP_BUILT
) $(if
$(FORCE_HOST_INSTALL
),FORCE
)
168 $(call Host
/Install
,$(HOST_BUILD_PREFIX
))
169 $(foreach hook
,$(Hooks
/HostInstall
/Post
),$(call
$(hook
))$(sep
))
170 mkdir
-p
$$(shell dirname
$$@
)
171 touch
$(HOST_STAMP_BUILT
)
174 $(call DefaultTargets
,$(patsubst %,host-
%,$(DEFAULT_SUBDIR_TARGETS
)))
176 $(foreach t
,$(DEFAULT_SUBDIR_TARGETS
),
180 clean-build
: host-clean-build
183 $(DL_DIR
)/$(FILE
): FORCE
185 $(_host_target
)host-prepare
: $(HOST_STAMP_PREPARED
)
186 $(_host_target
)host-configure
: $(HOST_STAMP_CONFIGURED
)
187 $(_host_target
)host-compile
: $(HOST_STAMP_BUILT
) $(HOST_STAMP_INSTALLED
)
188 host-install
: host-compile
190 host-clean-build
: FORCE
191 $(call Host
/Uninstall
)
192 rm -rf
$(HOST_BUILD_DIR
) $(HOST_STAMP_BUILT
)
194 host-clean
: host-clean-build
196 rm -rf
$(HOST_STAMP_INSTALLED
)
198 ifneq ($(CONFIG_AUTOREMOVE
),)
200 $(FIND
) $(HOST_BUILD_DIR
) -mindepth
1 -maxdepth
1 -not
'(' -type f
-and
-name
'.*' -and
-size
0 ')' | \
208 $(if
$(if
$(PKG_HOST_ONLY
),,$(STAMP_PREPARED
)),,$(if
$(strip $(PKG_SOURCE_URL
)),$(call Download
,default
)))