2 # Copyright (C) 2006-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 HOST_BUILD_DIR ?
= $(BUILD_DIR_HOST
)/$(PKG_NAME
)$(if
$(PKG_VERSION
),-$(PKG_VERSION
))
9 HOST_INSTALL_DIR ?
= $(HOST_BUILD_DIR
)/host-install
10 HOST_BUILD_PARALLEL ?
=
12 ifeq ($(strip $(HOST_BUILD_PARALLEL
)),0)
15 HOST_JOBS?
=$(if
$(HOST_BUILD_PARALLEL
)$(CONFIG_PKG_DEFAULT_PARALLEL
),\
16 $(if
$(CONFIG_PKG_BUILD_PARALLEL
),-j
$(CONFIG_PKG_BUILD_JOBS
),-j1
),-j1
)
19 include $(INCLUDE_DIR
)/host.mk
20 include $(INCLUDE_DIR
)/unpack.mk
21 include $(INCLUDE_DIR
)/depends.mk
24 HOST_STAMP_PREPARED
=$(HOST_BUILD_DIR
)/.prepared
$(if
$(HOST_QUILT
)$(DUMP
),,$(shell $(call find_md5
,${CURDIR} $(PKG_FILE_DEPENDS
),)))
25 HOST_STAMP_CONFIGURED
:=$(HOST_BUILD_DIR
)/.configured
26 HOST_STAMP_BUILT
:=$(HOST_BUILD_DIR
)/.built
27 HOST_STAMP_INSTALLED
:=$(STAGING_DIR_HOST
)/stamp
/.
$(PKG_NAME
)_installed
31 include $(INCLUDE_DIR
)/download.mk
32 include $(INCLUDE_DIR
)/quilt.mk
33 include $(INCLUDE_DIR
)/autotools.mk
35 Host
/Patch
:=$(Host
/Patch
/Default
)
36 ifneq ($(strip $(HOST_UNPACK
)),)
37 define Host
/Prepare
/Default
44 $(call Host
/Prepare
/Default
)
47 HOST_CONFIGURE_VARS
= \
48 CFLAGS
="$(HOST_CFLAGS)" \
49 CPPFLAGS
="$(HOST_CFLAGS)" \
50 LDFLAGS
="$(HOST_LDFLAGS)" \
53 HOST_CONFIGURE_ARGS
= \
54 --target
=$(GNU_HOST_NAME
) \
55 --host
=$(GNU_HOST_NAME
) \
56 --build
=$(GNU_HOST_NAME
) \
59 --prefix=$(STAGING_DIR_HOST
) \
60 --exec-prefix
=$(STAGING_DIR_HOST
) \
61 --sysconfdir
=$(STAGING_DIR_HOST
)/etc \
62 --localstatedir
=$(STAGING_DIR_HOST
)/var \
63 --sbindir
=$(STAGING_DIR_HOST
)/bin
65 HOST_CONFIGURE_CMD
= .
/configure
67 define Host
/Configure
/Default
68 (cd
$(HOST_BUILD_DIR
)/$(3); \
69 if
[ -x configure
]; then \
70 $(CP
) $(SCRIPT_DIR
)/config.
{guess
,sub
} $(HOST_BUILD_DIR
)/$(3)/ && \
72 $(HOST_CONFIGURE_CMD
) \
73 $(HOST_CONFIGURE_VARS
) \
74 $(HOST_CONFIGURE_ARGS
) \
81 $(call Host
/Configure
/Default
)
84 define Host
/Compile
/Default
85 $(MAKE
) $(HOST_JOBS
) -C
$(HOST_BUILD_DIR
) $(1)
89 $(call Host
/Compile
/Default
)
92 define Host
/Install
/Default
93 $(_SINGLE
)$(MAKE
) -C
$(HOST_BUILD_DIR
) install
97 $(call Host
/Install
/Default
)
101 ifneq ($(if
$(HOST_QUILT
),,$(CONFIG_AUTOREBUILD
)),)
102 define HostHost
/Autoclean
103 $(call rdep
,${CURDIR} $(PKG_FILE_DEPENDS
),$(HOST_STAMP_PREPARED
))
104 $(if
$(if
$(Host
/Compile
),$(filter prepare
,$(MAKECMDGOALS
)),1),,$(call rdep
,$(HOST_BUILD_DIR
),$(HOST_STAMP_BUILT
)))
108 define Download
/default
110 URL
:=$(PKG_SOURCE_URL
)
111 PROTO
:=$(PKG_SOURCE_PROTO
)
112 SUBDIR
:=$(PKG_SOURCE_SUBDIR
)
113 VERSION
:=$(PKG_SOURCE_VERSION
)
114 MD5SUM
:=$(PKG_MD5SUM
)
117 define Host
/Exports
/Default
118 $(1) : export ACLOCAL_INCLUDE
=$$(foreach p
,$$(wildcard $$(STAGING_DIR_HOST
)/share
/aclocal
$$(STAGING_DIR_HOST
)/share
/aclocal-
*),-I
$$(p
))
119 $(1) : export STAGING_PREFIX
=$$(STAGING_DIR_HOST
)
120 $(1) : export PKG_CONFIG_PATH
=$$(STAGING_DIR_HOST
)/lib
/pkgconfig
121 $(1) : export PKG_CONFIG_LIBDIR
=$$(STAGING_DIR_HOST
)/lib
/pkgconfig
123 Host
/Exports
=$(Host
/Exports
/Default
)
127 $(if
$(HOST_QUILT
),$(Host
/Quilt
))
128 $(if
$(if
$(PKG_HOST_ONLY
),,$(STAMP_PREPARED
)),,$(if
$(strip $(PKG_SOURCE_URL
)),$(call Download
,default
)))
129 $(if
$(DUMP
),,$(call HostHost
/Autoclean
))
131 $(HOST_STAMP_PREPARED
):
132 @
-rm -rf
$(HOST_BUILD_DIR
)
133 @mkdir
-p
$(HOST_BUILD_DIR
)
134 $(foreach hook
,$(Hooks
/HostPrepare
/Pre
),$(call
$(hook
))$(sep
))
136 $(foreach hook
,$(Hooks
/HostPrepare
/Post
),$(call
$(hook
))$(sep
))
139 $(call Host
/Exports
,$(HOST_STAMP_CONFIGURED
))
140 $(HOST_STAMP_CONFIGURED
): $(HOST_STAMP_PREPARED
)
141 $(foreach hook
,$(Hooks
/HostConfigure
/Pre
),$(call
$(hook
))$(sep
))
142 $(call Host
/Configure
)
143 $(foreach hook
,$(Hooks
/HostConfigure
/Post
),$(call
$(hook
))$(sep
))
146 $(call Host
/Exports
,$(HOST_STAMP_BUILT
))
148 host-install
: $(if
$(STAMP_BUILT
),$(HOST_STAMP_BUILT
),$(HOST_STAMP_INSTALLED
))
152 prepare
: host-prepare
153 compile
: host-compile
154 install: host-install
157 refresh
: host-refresh
159 $(HOST_STAMP_BUILT
): $(HOST_STAMP_CONFIGURED
)
160 $(foreach hook
,$(Hooks
/HostCompile
/Pre
),$(call
$(hook
))$(sep
))
162 $(foreach hook
,$(Hooks
/HostCompile
/Post
),$(call
$(hook
))$(sep
))
165 $(HOST_STAMP_INSTALLED
): $(HOST_STAMP_BUILT
) $(if
$(FORCE_HOST_INSTALL
),FORCE
)
167 $(foreach hook
,$(Hooks
/HostInstall
/Post
),$(call
$(hook
))$(sep
))
168 mkdir
-p
$$(shell dirname
$$@
)
171 $(HOST_STAMP_BUILT
): $(HOST_STAMP_CONFIGURED
) $(if
$(FORCE_HOST_INSTALL
),FORCE
)
172 $(foreach hook
,$(Hooks
/HostCompile
/Pre
),$(call
$(hook
))$(sep
))
174 $(foreach hook
,$(Hooks
/HostCompile
/Post
),$(call
$(hook
))$(sep
))
176 $(foreach hook
,$(Hooks
/HostInstall
/Post
),$(call
$(hook
))$(sep
))
179 host-prepare
: $(HOST_STAMP_PREPARED
)
180 host-configure
: $(HOST_STAMP_CONFIGURED
)
181 host-compile
: $(HOST_STAMP_BUILT
)
185 $(call Host
/Uninstall
)
186 rm -rf
$(HOST_BUILD_DIR
) $(HOST_STAMP_INSTALLED
) $(HOST_STAMP_BUILT
)