adjust host-build.mk to bring it closer to package.mk
[openwrt/staging/florian.git] / include / host-build.mk
1 #
2 # Copyright (C) 2006-2008 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 HOST_BUILD_DIR ?= $(BUILD_DIR_HOST)/$(PKG_NAME)$(if $(PKG_VERSION),-$(PKG_VERSION))
9 HOST_INSTALL_DIR ?= $(HOST_BUILD_DIR)/host-install
10
11 include $(INCLUDE_DIR)/host.mk
12 include $(INCLUDE_DIR)/unpack.mk
13 include $(INCLUDE_DIR)/depends.mk
14
15 HOST_STAMP_PREPARED=$(HOST_BUILD_DIR)/.prepared$(if $(QUILT)$(DUMP),,$(shell $(call find_md5,${CURDIR} $(PKG_FILE_DEPEND),)))
16 HOST_STAMP_CONFIGURED:=$(HOST_BUILD_DIR)/.configured
17 HOST_STAMP_BUILT:=$(HOST_BUILD_DIR)/.built
18 HOST_STAMP_INSTALLED:=$(STAGING_DIR_HOST)/stamp/.$(PKG_NAME)_installed
19
20 override MAKEFLAGS=
21
22 include $(INCLUDE_DIR)/download.mk
23 include $(INCLUDE_DIR)/quilt.mk
24
25 Host/Patch:=$(Host/Patch/Default)
26 ifneq ($(strip $(HOST_UNPACK)),)
27 define Host/Prepare/Default
28 $(HOST_UNPACK)
29 $(Host/Patch)
30 endef
31 endif
32
33 define Host/Prepare
34 $(call Host/Prepare/Default)
35 endef
36
37 HOST_CONFIGURE_VARS = \
38 CPPFLAGS="$(HOST_CFLAGS)" \
39 LDFLAGS="$(HOST_LDFLAGS)" \
40 SHELL="$(BASH)"
41
42 HOST_CONFIGURE_ARGS = \
43 --target=$(GNU_HOST_NAME) \
44 --host=$(GNU_HOST_NAME) \
45 --build=$(GNU_HOST_NAME) \
46 --program-prefix="" \
47 --program-suffix="" \
48 --prefix=$(STAGING_DIR_HOST) \
49 --exec-prefix=$(STAGING_DIR_HOST) \
50 --sysconfdir=$(STAGING_DIR_HOST)/etc \
51 --localstatedir=$(STAGING_DIR_HOST)/var
52
53 HOST_CONFIGURE_CMD = ./configure
54
55 define Host/Configure/Default
56 @(cd $(HOST_BUILD_DIR)/$(3); \
57 if [ -x configure ]; then \
58 $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/$(3)/ && \
59 $(2) \
60 $(HOST_CONFIGURE_CMD) \
61 $(HOST_CONFIGURE_ARGS) \
62 $(1); \
63 fi \
64 )
65 endef
66
67 define Host/Configure
68 $(call Host/Configure/Default)
69 endef
70
71 define Host/Compile/Default
72 $(MAKE) -C $(HOST_BUILD_DIR) $(1)
73 endef
74
75 define Host/Compile
76 $(call Host/Compile/Default)
77 endef
78
79 ifneq ($(if $(QUILT),,$(CONFIG_AUTOREBUILD)),)
80 define HostHost/Autoclean
81 $(call rdep,${CURDIR} $(PKG_FILE_DEPEND),$(HOST_STAMP_PREPARED))
82 $(if $(if $(Host/Compile),$(filter prepare,$(MAKECMDGOALS)),1),,$(call rdep,$(HOST_BUILD_DIR),$(HOST_STAMP_BUILT)))
83 endef
84 endif
85
86 define Download/default
87 FILE:=$(PKG_SOURCE)
88 URL:=$(PKG_SOURCE_URL)
89 PROTO:=$(PKG_SOURCE_PROTO)
90 SUBDIR:=$(PKG_SOURCE_SUBDIR)
91 VERSION:=$(PKG_SOURCE_VERSION)
92 MD5SUM:=$(PKG_MD5SUM)
93 endef
94
95 ifndef DUMP
96 define HostBuild
97 $(if $(QUILT),$(Host/Quilt))
98 $(if $(STAMP_PREPARED),,$(if $(strip $(PKG_SOURCE_URL)),$(call Download,default)))
99 $(if $(DUMP),,$(call HostHost/Autoclean))
100
101 $(HOST_STAMP_PREPARED):
102 @-rm -rf $(HOST_BUILD_DIR)
103 @mkdir -p $(HOST_BUILD_DIR)
104 $(call Host/Prepare)
105 touch $$@
106
107 $(HOST_STAMP_CONFIGURED): $(HOST_STAMP_PREPARED)
108 $(call Host/Configure)
109 touch $$@
110
111 $(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED)
112 $(call Host/Compile)
113 touch $$@
114
115 $(HOST_STAMP_INSTALLED): $(HOST_STAMP_BUILT)
116 $(call Host/Install)
117 mkdir -p $$(shell dirname $$@)
118 touch $$@
119
120 ifdef Host/Install
121 host-install: $(HOST_STAMP_INSTALLED)
122 endif
123
124 download:
125 host-prepare: $(HOST_STAMP_PREPARED)
126 host-configure: $(HOST_STAMP_CONFIGURED)
127 host-compile: $(HOST_STAMP_BUILT)
128 host-install:
129 host-clean: FORCE
130 $(call Host/Clean)
131 $(call Host/Uninstall)
132 rm -rf $(HOST_BUILD_DIR) $(HOST_STAMP_INSTALLED) $(HOST_STAMP_BUILT)
133
134 endef
135
136 prepare: host-prepare
137 compile: host-compile
138 install: host-install
139 clean: host-clean
140
141 endif
142