2 # Copyright (C) 2006-2007 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
)-$(PKG_VERSION
)
11 PKG_INSTALL_DIR ?
= $(PKG_BUILD_DIR
)/ipkg-install
13 include $(INCLUDE_DIR
)/prereq.mk
14 include $(INCLUDE_DIR
)/host.mk
15 include $(INCLUDE_DIR
)/unpack.mk
16 include $(INCLUDE_DIR
)/depends.mk
18 STAMP_PREPARED
:=$(PKG_BUILD_DIR
)/.prepared
$(if
$(DUMP
),,_
$(shell find
${CURDIR} $(PKG_FILE_DEPEND
) $(DEP_FINDPARAMS
) | md5s
))
19 STAMP_CONFIGURED
:=$(PKG_BUILD_DIR
)/.configured
20 STAMP_BUILT
:=$(PKG_BUILD_DIR
)/.built
22 include $(INCLUDE_DIR
)/quilt.mk
23 include $(INCLUDE_DIR
)/package-defaults.mk
24 include $(INCLUDE_DIR
)/package-dumpinfo.mk
25 include $(INCLUDE_DIR
)/package-ipkg.mk
28 export CONFIG_SITE
:=$(INCLUDE_DIR
)/site
/$(REAL_GNU_TARGET_NAME
)
30 ifeq ($(DUMP
)$(filter prereq
clean refresh update
,$(MAKECMDGOALS
)),)
31 ifneq ($(CONFIG_AUTOREBUILD
),)
32 define Build
/Autoclean
33 $(PKG_BUILD_DIR
)/.dep_files
: $(STAMP_PREPARED
)
34 $(call rdep
,${CURDIR} $(PKG_FILE_DEPEND
),$(STAMP_PREPARED
))
35 $(if
$(filter prepare
,$(MAKECMDGOALS
)),,$(call rdep
,$(PKG_BUILD_DIR
),$(STAMP_BUILT
),$(PKG_BUILD_DIR
)/.dep_files
, -and
-not
-path
"/.*" -and
-not
-path
"*/ipkg*"))
40 define Build
/DefaultTargets
41 ifneq ($(strip $(PKG_SOURCE_URL
)),)
42 download
: $(DL_DIR
)/$(PKG_SOURCE
)
44 $(DL_DIR
)/$(PKG_SOURCE
):
46 $(SCRIPT_DIR
)/download.pl
"$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL
)
48 $(STAMP_PREPARED
): $(DL_DIR
)/$(PKG_SOURCE
)
51 $(call Build
/Autoclean
)
54 @
-rm -rf
$(PKG_BUILD_DIR
)
55 @mkdir
-p
$(PKG_BUILD_DIR
)
59 $(STAMP_CONFIGURED
): $(STAMP_PREPARED
)
63 $(STAMP_BUILT
): $(STAMP_CONFIGURED
)
65 @
$(NO_TRACE_MAKE
) $(PKG_BUILD_DIR
)/.dep_files
68 ifdef Build
/InstallDev
69 compile
: $(STAGING_DIR
)/stampfiles
/.
$(PKG_NAME
)-installed
70 $(STAGING_DIR
)/stampfiles
/.
$(PKG_NAME
)-installed
: $(STAMP_BUILT
)
71 mkdir
-p
$(STAGING_DIR
)/stampfiles
76 define Build
/DefaultTargets
81 $(eval
$(Package
/Default
))
82 $(eval
$(Package
/$(1)))
84 # <HACK> Support obsolete DESCRIPTION field
85 ifndef Package
/$(1)/description
86 define Package
/$(1)/description
93 $(foreach FIELD
, TITLE CATEGORY PRIORITY SECTION VERSION
,
95 $$(error Package
/$(1) is missing the
$(FIELD
) field
)
99 $(call shexport
,Package
/$(1)/description
)
100 $(call shexport
,Package
/$(1)/config
)
107 $(call Build
/Prepare
/Default
,)
110 define Build
/Configure
111 $(call Build
/Configure
/Default
,)
115 $(call Build
/Compile
/Default
,)
123 prepare
: $(STAMP_PREPARED
)
124 configure
: $(STAMP_CONFIGURED
)
128 $(Build
/UninstallDev
)
130 @
rm -f
$(STAGING_DIR
)/stampfiles
/.
$(PKG_NAME
)-installed
131 @
rm -rf
$(PKG_BUILD_DIR
)