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
27 export CONFIG_SITE
:=$(INCLUDE_DIR
)/site
/$(REAL_GNU_TARGET_NAME
)
30 ifneq ($(CONFIG_AUTOREBUILD
),)
31 define Build
/Autoclean
32 $(PKG_BUILD_DIR
)/.dep_files
: $(STAMP_PREPARED
)
33 $(call rdep
,${CURDIR} $(PKG_FILE_DEPEND
),$(STAMP_PREPARED
))
34 $(call rdep
,$(PKG_BUILD_DIR
),$(STAMP_BUILT
),$(PKG_BUILD_DIR
)/.dep_files
, -and
-not
-path
"/.*" -and
-not
-path
"*/ipkg*")
39 define Build
/DefaultTargets
40 ifneq ($(strip $(PKG_SOURCE_URL
)),)
41 download
: $(DL_DIR
)/$(PKG_SOURCE
)
43 $(DL_DIR
)/$(PKG_SOURCE
):
45 $(SCRIPT_DIR
)/download.pl
"$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL
)
47 $(STAMP_PREPARED
): $(DL_DIR
)/$(PKG_SOURCE
)
50 $(call Build
/Autoclean
)
53 @
-rm -rf
$(PKG_BUILD_DIR
)
54 @mkdir
-p
$(PKG_BUILD_DIR
)
58 $(STAMP_CONFIGURED
): $(STAMP_PREPARED
)
62 $(STAMP_BUILT
): $(STAMP_CONFIGURED
)
64 @
$(NO_TRACE_MAKE
) $(PKG_BUILD_DIR
)/.dep_files
67 ifdef Build
/InstallDev
68 compile
: $(STAGING_DIR
)/stampfiles
/.
$(PKG_NAME
)-installed
69 $(STAGING_DIR
)/stampfiles
/.
$(PKG_NAME
)-installed
: $(STAMP_BUILT
)
70 mkdir
-p
$(STAGING_DIR
)/stampfiles
75 define Build
/DefaultTargets
80 $(eval
$(Package
/Default
))
81 $(eval
$(Package
/$(1)))
83 # <HACK> Support obsolete DESCRIPTION field
84 ifndef Package
/$(1)/description
85 define Package
/$(1)/description
92 $(foreach FIELD
, TITLE CATEGORY PRIORITY SECTION VERSION
,
94 $$(error Package
/$(1) is missing the
$(FIELD
) field
)
98 $(call shexport
,Package
/$(1)/description
)
99 $(call shexport
,Package
/$(1)/config
)
106 $(call Build
/Prepare
/Default
,)
109 define Build
/Configure
110 $(call Build
/Configure
/Default
,)
114 $(call Build
/Compile
/Default
,)
122 prepare
: $(STAMP_PREPARED
)
123 configure
: $(STAMP_CONFIGURED
)
127 $(Build
/UninstallDev
)
129 @
rm -f
$(STAGING_DIR
)/stampfiles
/.
$(PKG_NAME
)-installed
130 @
rm -rf
$(PKG_BUILD_DIR
)