2 # Copyright (C) 2006-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 all: $(if
$(DUMP
),dumpinfo
,compile
)
10 PKG_BUILD_DIR ?
= $(BUILD_DIR
)/$(PKG_NAME
)$(if
$(PKG_VERSION
),-$(PKG_VERSION
))
11 PKG_INSTALL_DIR ?
= $(PKG_BUILD_DIR
)/ipkg-install
15 ifeq ($(strip $(PKG_BUILD_PARALLEL
)),0)
18 PKG_JOBS?
=$(if
$(PKG_BUILD_PARALLEL
)$(CONFIG_PKG_DEFAULT_PARALLEL
),\
19 $(if
$(CONFIG_PKG_BUILD_PARALLEL
),-j
$(CONFIG_PKG_BUILD_JOBS
),-j1
),-j1
)
22 include $(INCLUDE_DIR
)/prereq.mk
23 include $(INCLUDE_DIR
)/host.mk
24 include $(INCLUDE_DIR
)/unpack.mk
25 include $(INCLUDE_DIR
)/depends.mk
27 STAMP_NO_AUTOREBUILD
=$(wildcard $(PKG_BUILD_DIR
)/.no_autorebuild
)
28 PREV_STAMP_PREPARED
:=$(if
$(STAMP_NO_AUTOREBUILD
),$(wildcard $(PKG_BUILD_DIR
)/.prepared
*))
29 ifneq ($(PREV_STAMP_PREPARED
),)
30 STAMP_PREPARED
:=$(PREV_STAMP_PREPARED
)
33 STAMP_PREPARED
=$(PKG_BUILD_DIR
)/.prepared
$(if
$(QUILT
)$(DUMP
),,_
$(shell $(call find_md5
,${CURDIR} $(PKG_FILE_DEPENDS
),)))
35 STAMP_CONFIGURED
:=$(PKG_BUILD_DIR
)/.configured
$(if
$(DUMP
),,_
$(call confvar
,$(PKG_CONFIG_DEPENDS
)))
36 STAMP_CONFIGURED_WILDCARD
=$(patsubst %_
$(call confvar
,$(PKG_CONFIG_DEPENDS
)),%_
*,$(STAMP_CONFIGURED
))
37 STAMP_BUILT
:=$(PKG_BUILD_DIR
)/.built
38 STAMP_INSTALLED
:=$(STAGING_DIR
)/stamp
/.
$(PKG_NAME
)_installed
40 STAGING_FILES_LIST
:=$(PKG_NAME
)$(if
$(BUILD_VARIANT
),.
$(BUILD_VARIANT
),).list
41 ifneq ($(if
$(CONFIG_SRC_TREE_OVERRIDE
),$(wildcard .
/git-src
)),)
46 include $(INCLUDE_DIR
)/download.mk
47 include $(INCLUDE_DIR
)/quilt.mk
48 include $(INCLUDE_DIR
)/package-defaults.mk
49 include $(INCLUDE_DIR
)/package-dumpinfo.mk
50 include $(INCLUDE_DIR
)/package-ipkg.mk
51 include $(INCLUDE_DIR
)/package-bin.mk
52 include $(INCLUDE_DIR
)/autotools.mk
55 CONFIG_SITE
:=$(INCLUDE_DIR
)/site
/$(REAL_GNU_TARGET_NAME
)
56 CUR_MAKEFILE
:=$(filter-out Makefile
,$(firstword $(MAKEFILE_LIST
)))
57 SUBMAKE
:=$(NO_TRACE_MAKE
) $(if
$(CUR_MAKEFILE
),-f
$(CUR_MAKEFILE
))
58 PKG_CONFIG_PATH
=$(STAGING_DIR
)/usr
/lib
/pkgconfig
60 ifeq ($(DUMP
)$(filter prereq
clean refresh update
,$(MAKECMDGOALS
)),)
61 ifneq ($(if
$(QUILT
),,$(CONFIG_AUTOREBUILD
)),)
62 define Build
/Autoclean
63 $(PKG_BUILD_DIR
)/.dep_files
: $(STAMP_PREPARED
)
64 $(call rdep
,${CURDIR} $(PKG_FILE_DEPENDS
),$(STAMP_PREPARED
),$(PKG_BUILD_DIR
)/.dep_files
,-x
"*/.dep_*")
65 $(if
$(filter prepare
,$(MAKECMDGOALS
)),,$(call rdep
,$(PKG_BUILD_DIR
),$(STAMP_BUILT
),,-x
"*/.dep_*" -x
"*/ipkg*"))
70 ifeq ($(CONFIG_
$(PKG_NAME
)_USE_CUSTOM_SOURCE_DIR
),y
)
73 # add hook to install a link to customer source path of dedicated package
74 Hooks
/Prepare
/Pre
+= prepare_custom_source_directory
75 # define empty default action
76 define Build
/Prepare
/Default
81 define Download
/default
83 URL
:=$(PKG_SOURCE_URL
)
84 SUBDIR
:=$(PKG_SOURCE_SUBDIR
)
85 PROTO
:=$(PKG_SOURCE_PROTO
)
86 $(if
$(PKG_SOURCE_MIRROR
),MIRROR
:=$(filter 1,$(PKG_MIRROR
)))
87 $(if
$(PKG_MIRROR_MD5SUM
),MIRROR_MD5SUM
:=$(PKG_MIRROR_MD5SUM
))
88 VERSION
:=$(PKG_SOURCE_VERSION
)
93 define Build
/Prepare
/Default
94 mkdir
-p
$(PKG_BUILD_DIR
)
95 ln
-s
$(CURDIR
)/git-src
$(PKG_BUILD_DIR
)/.git
96 ( cd
$(PKG_BUILD_DIR
); git checkout .
)
100 define Build
/Exports
/Default
101 $(1) : export ACLOCAL_INCLUDE
=$$(foreach p
,$$(wildcard $$(STAGING_DIR
)/usr
/share
/aclocal
$$(STAGING_DIR
)/usr
/share
/aclocal-
* $$(STAGING_DIR
)/host
/share
/aclocal
$$(STAGING_DIR
)/host
/share
/aclocal-
*),-I
$$(p
))
102 $(1) : export STAGING_PREFIX
=$$(STAGING_DIR
)/usr
103 $(1) : export PATH
=$$(TARGET_PATH_PKG
)
104 $(1) : export CONFIG_SITE
:=$$(CONFIG_SITE
)
105 $(1) : export PKG_CONFIG_PATH
:=$$(PKG_CONFIG_PATH
)
106 $(1) : export PKG_CONFIG_LIBDIR
:=$$(PKG_CONFIG_PATH
)
107 $(1) : export CCACHE_DIR
:=$(STAGING_DIR
)/ccache
109 Build
/Exports
=$(Build
/Exports
/Default
)
111 define Build
/DefaultTargets
112 $(if
$(QUILT
),$(Build
/Quilt
))
113 $(if
$(USE_GIT_TREE
),,$(if
$(strip $(PKG_SOURCE_URL
)),$(call Download
,default
)))
114 $(call Build
/Autoclean
)
117 $(foreach hook
,$(Hooks
/Download
),
118 $(call
$(hook
))$(sep
)
121 $(STAMP_PREPARED
) : export PATH
=$$(TARGET_PATH_PKG
)
123 @
-rm -rf
$(PKG_BUILD_DIR
)
124 @mkdir
-p
$(PKG_BUILD_DIR
)
125 $(foreach hook
,$(Hooks
/Prepare
/Pre
),$(call
$(hook
))$(sep
))
127 $(foreach hook
,$(Hooks
/Prepare
/Post
),$(call
$(hook
))$(sep
))
130 $(call Build
/Exports
,$(STAMP_CONFIGURED
))
131 $(STAMP_CONFIGURED
): $(STAMP_PREPARED
)
132 $(foreach hook
,$(Hooks
/Configure
/Pre
),$(call
$(hook
))$(sep
))
134 $(foreach hook
,$(Hooks
/Configure
/Post
),$(call
$(hook
))$(sep
))
135 rm -f
$(STAMP_CONFIGURED_WILDCARD
)
138 $(call Build
/Exports
,$(STAMP_BUILT
))
139 $(STAMP_BUILT
): $(STAMP_CONFIGURED
)
140 $(foreach hook
,$(Hooks
/Compile
/Pre
),$(call
$(hook
))$(sep
))
142 $(foreach hook
,$(Hooks
/Compile
/Post
),$(call
$(hook
))$(sep
))
144 $(foreach hook
,$(Hooks
/Install
/Post
),$(call
$(hook
))$(sep
))
147 $(STAMP_INSTALLED
) : export PATH
=$$(TARGET_PATH_PKG
)
148 $(STAMP_INSTALLED
): $(STAMP_BUILT
)
149 $(SUBMAKE
) -j1 clean-staging
150 rm -rf
$(TMP_DIR
)/stage-
$(PKG_NAME
)
151 mkdir
-p
$(TMP_DIR
)/stage-
$(PKG_NAME
)/host
$(STAGING_DIR
)/packages
$(STAGING_DIR_HOST
)/packages
152 $(foreach hook
,$(Hooks
/InstallDev
/Pre
),\
153 $(call
$(hook
),$(TMP_DIR
)/stage-
$(PKG_NAME
),$(TMP_DIR
)/stage-
$(PKG_NAME
)/host
)$(sep
)\
155 $(call Build
/InstallDev
,$(TMP_DIR
)/stage-
$(PKG_NAME
),$(TMP_DIR
)/stage-
$(PKG_NAME
)/host
)
156 $(foreach hook
,$(Hooks
/InstallDev
/Post
),\
157 $(call
$(hook
),$(TMP_DIR
)/stage-
$(PKG_NAME
),$(TMP_DIR
)/stage-
$(PKG_NAME
)/host
)$(sep
)\
159 if
[ -d
$(TMP_DIR
)/stage-
$(PKG_NAME
) ]; then \
160 (cd
$(TMP_DIR
)/stage-
$(PKG_NAME
); find .
/ > $(TMP_DIR
)/stage-
$(PKG_NAME
).files
); \
162 mv
$(TMP_DIR
)/stage-
$(PKG_NAME
).files
$(STAGING_DIR
)/packages
/$(STAGING_FILES_LIST
) && \
163 $(CP
) $(TMP_DIR
)/stage-
$(PKG_NAME
)/* $(STAGING_DIR
)/; \
166 rm -rf
$(TMP_DIR
)/stage-
$(PKG_NAME
)
169 ifdef Build
/InstallDev
170 compile
: $(STAMP_INSTALLED
)
173 define Build
/DefaultTargets
176 prepare
: $(STAMP_PREPARED
)
177 configure
: $(STAMP_CONFIGURED
)
178 dist: $(STAMP_CONFIGURED
)
179 distcheck
: $(STAMP_CONFIGURED
)
182 define Build
/IncludeOverlay
183 $(eval
-include $(wildcard $(TOPDIR
)/overlay
/*/$(PKG_NAME
).mk
))
184 define Build
/IncludeOverlay
189 $(Build
/IncludeOverlay
)
190 $(eval
$(Package
/Default
))
191 $(eval
$(Package
/$(1)))
194 $$(error DESCRIPTION
:= is obsolete
, use Package
/PKG_NAME
/description
)
197 ifndef Package
/$(1)/description
198 define Package
/$(1)/description
203 $(foreach FIELD
, TITLE CATEGORY PRIORITY SECTION VERSION
,
205 $$(error Package
/$(1) is missing the
$(FIELD
) field
)
209 $(call shexport
,Package
/$(1)/description
)
210 $(call shexport
,Package
/$(1)/config
)
213 $(Dumpinfo
/Package
), \
215 $(if
$(Package
/$(1)/targets
),$(Package
/$(1)/targets
), \
216 $(if
$(PKG_TARGETS
),$(PKG_TARGETS
), ipkg
) \
217 ), $(BuildTarget
/$(target
)) \
220 $(if
$(PKG_HOST_ONLY
)$(DUMP
),,$(call Build
/DefaultTargets
,$(1)))
223 define pkg_install_files
224 $(foreach install_file
,$(1),$(INSTALL_DIR
) $(3)/`dirname $(install_file)`; $(INSTALL_DATA
) $(2)/$(install_file
) $(3)/`dirname $(install_file)`;)
227 define pkg_install_bin
228 $(foreach install_apps
,$(1),$(INSTALL_DIR
) $(3)/`dirname $(install_apps)`; $(INSTALL_BIN
) $(2)/$(install_apps
) $(3)/`dirname $(install_apps)`;)
231 Build
/Prepare
=$(call Build
/Prepare
/Default
,)
232 Build
/Configure
=$(call Build
/Configure
/Default
,)
233 Build
/Compile
=$(call Build
/Compile
/Default
,)
234 Build
/Install
=$(if
$(PKG_INSTALL
),$(call Build
/Install
/Default
,))
235 Build
/Dist
=$(call Build
/Dist
/Default
,)
236 Build
/DistCheck
=$(call Build
/DistCheck
/Default
,)
248 rm -f
$(STAMP_INSTALLED
)
250 cd
"$(STAGING_DIR)"; \
251 if
[ -f packages
/$(STAGING_FILES_LIST
) ]; then \
252 cat packages
/$(STAGING_FILES_LIST
) | xargs
-r
rm -f
2>/dev
/null
; \
256 clean: clean-staging FORCE
257 $(call Build
/UninstallDev
,$(STAGING_DIR
),$(STAGING_DIR_HOST
))
259 rm -f
$(STAGING_DIR
)/packages
/$(STAGING_FILES_LIST
) $(STAGING_DIR_HOST
)/packages
/$(STAGING_FILES_LIST
)
260 rm -rf
$(PKG_BUILD_DIR
)