fix rootfs and init script handling
[openwrt/svn-archive/archive.git] / include / host-build.mk
1 #
2 # Copyright (C) 2006-2007 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 include $(INCLUDE_DIR)/host.mk
9 include $(INCLUDE_DIR)/unpack.mk
10 include $(INCLUDE_DIR)/depends.mk
11
12 STAMP_PREPARED:=$(PKG_BUILD_DIR)/.prepared_$(shell find ${CURDIR} $(PKG_FILE_DEPEND) $(DEP_FINDPARAMS) | md5s)
13 STAMP_CONFIGURED:=$(PKG_BUILD_DIR)/.configured
14 STAMP_BUILT:=$(PKG_BUILD_DIR)/.built
15 override MAKEFLAGS=
16
17 include $(INCLUDE_DIR)/quilt.mk
18
19 Build/Patch:=$(Build/Patch/Default)
20 ifneq ($(strip $(PKG_UNPACK)),)
21 define Build/Prepare/Default
22 $(PKG_UNPACK)
23 $(Build/Patch)
24 endef
25 endif
26
27 define Build/Prepare
28 $(call Build/Prepare/Default)
29 endef
30
31 define Build/Configure/Default
32 @(cd $(PKG_BUILD_DIR)/$(3); \
33 [ -x configure ] && \
34 $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/$(3)/ && \
35 $(2) \
36 CPPFLAGS="-I$(STAGING_DIR)/host/include" \
37 LDFLAGS="-L$(STAGING_DIR)/host/lib" \
38 ./configure \
39 --target=$(GNU_TARGET_NAME) \
40 --host=$(GNU_TARGET_NAME) \
41 --build=$(GNU_HOST_NAME) \
42 --program-prefix="" \
43 --program-suffix="" \
44 --prefix=/usr \
45 --exec-prefix=/usr \
46 --bindir=/usr/bin \
47 --sbindir=/usr/sbin \
48 --libexecdir=/usr/lib \
49 --sysconfdir=/etc \
50 --datadir=/usr/share \
51 --localstatedir=/var \
52 --mandir=/usr/man \
53 --infodir=/usr/info \
54 $(DISABLE_NLS) \
55 $(1); \
56 true; \
57 )
58 endef
59
60 define Build/Configure
61 $(call Build/Configure/Default)
62 endef
63
64 define Build/Compile/Default
65 $(MAKE) -C $(PKG_BUILD_DIR) $(1)
66 endef
67
68 define Build/Compile
69 $(call Build/Compile/Default)
70 endef
71
72
73 ifneq ($(strip $(PKG_SOURCE)),)
74 download: $(DL_DIR)/$(PKG_SOURCE)
75
76 $(DL_DIR)/$(PKG_SOURCE):
77 mkdir -p $(DL_DIR)
78 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL)
79
80 $(STAMP_PREPARED): $(DL_DIR)/$(PKG_SOURCE)
81 endif
82
83 ifneq ($(if $(QUILT),,$(CONFIG_AUTOREBUILD)),)
84 define HostBuild/Autoclean
85 $(PKG_BUILD_DIR)/.dep_files: $(STAMP_PREPARED)
86 $(call rdep,${CURDIR} $(PKG_FILE_DEPEND),$(STAMP_PREPARED))
87 $(if $(filter prepare,$(MAKECMDGOALS)),,$(call rdep,$(PKG_BUILD_DIR),$(STAMP_BUILT),$(PKG_BUILD_DIR)/.dep_files, -and -not -path "/.*" -and -not -path "*/ipkg*"))
88 endef
89 endif
90
91 define HostBuild
92 ifeq ($(DUMP),)
93 $(call HostBuild/Autoclean)
94 endif
95
96 $(STAMP_PREPARED):
97 @-rm -rf $(PKG_BUILD_DIR)
98 @mkdir -p $(PKG_BUILD_DIR)
99 $(call Build/Prepare)
100 touch $$@
101
102 $(STAMP_CONFIGURED): $(STAMP_PREPARED)
103 $(call Build/Configure)
104 touch $$@
105
106 $(STAMP_BUILT): $(STAMP_CONFIGURED)
107 $(call Build/Compile)
108 touch $$@
109
110 $(STAGING_DIR)/stampfiles/.host_$(PKG_NAME)-installed: $(STAMP_BUILT)
111 $(call Build/Install)
112 mkdir -p $$(shell dirname $$@)
113 touch $$@
114
115 ifdef Build/Install
116 install: $(STAGING_DIR)/stampfiles/.host_$(PKG_NAME)-installed
117 endif
118
119 package-clean: FORCE
120 $(call Build/Clean)
121 $(call Build/Uninstall)
122 rm -f $(STAGING_DIR)/stampfiles/.host_$(PKG_NAME)-installed
123
124 download:
125 prepare: $(STAMP_PREPARED)
126 configure: $(STAMP_CONFIGURED)
127 compile: $(STAMP_BUILT)
128 install:
129 clean: FORCE
130 $(call Build/Clean)
131 rm -rf $(PKG_BUILD_DIR)
132
133 endef