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
)$(if
$(PKG_VERSION
),-$(PKG_VERSION
))
11 PKG_INSTALL_DIR ?
= $(PKG_BUILD_DIR
)/ipkg-install
14 include $(INCLUDE_DIR
)/prereq.mk
15 include $(INCLUDE_DIR
)/host.mk
16 include $(INCLUDE_DIR
)/unpack.mk
17 include $(INCLUDE_DIR
)/depends.mk
19 STAMP_PREPARED
:=$(PKG_BUILD_DIR
)/.prepared
$(if
$(DUMP
),,_
$(shell $(call find_md5
,${CURDIR} $(PKG_FILE_DEPEND
),)))
20 STAMP_CONFIGURED
:=$(PKG_BUILD_DIR
)/.configured
21 STAMP_BUILT
:=$(PKG_BUILD_DIR
)/.built
23 include $(INCLUDE_DIR
)/quilt.mk
24 include $(INCLUDE_DIR
)/package-defaults.mk
25 include $(INCLUDE_DIR
)/package-dumpinfo.mk
26 include $(INCLUDE_DIR
)/package-ipkg.mk
29 export CONFIG_SITE
:=$(INCLUDE_DIR
)/site
/$(REAL_GNU_TARGET_NAME
)
31 ifeq ($(DUMP
)$(filter prereq
clean refresh update
,$(MAKECMDGOALS
)),)
32 ifneq ($(if
$(QUILT
),,$(CONFIG_AUTOREBUILD
)),)
33 define Build
/Autoclean
34 $(PKG_BUILD_DIR
)/.dep_files
: $(STAMP_PREPARED
)
35 $(call rdep
,${CURDIR} $(PKG_FILE_DEPEND
),$(STAMP_PREPARED
),$(PKG_BUILD_DIR
)/.dep_files
,-x
"*/.dep_*")
36 $(if
$(filter prepare
,$(MAKECMDGOALS
)),,$(call rdep
,$(PKG_BUILD_DIR
),$(STAMP_BUILT
),,-x
"*/.dep_*" -x
"*/ipkg*"))
42 define Build
/DefaultTargets
43 ifneq ($(strip $(PKG_SOURCE_URL
)),)
44 download
: $(DL_DIR
)/$(PKG_SOURCE
)
46 $(DL_DIR
)/$(PKG_SOURCE
):
48 $(SCRIPT_DIR
)/download.pl
"$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL
)
50 $(STAMP_PREPARED
): $(DL_DIR
)/$(PKG_SOURCE
)
53 $(call Build
/Autoclean
)
56 @
-rm -rf
$(PKG_BUILD_DIR
)
57 @mkdir
-p
$(PKG_BUILD_DIR
)
61 $(STAMP_CONFIGURED
): $(STAMP_PREPARED
)
65 $(STAMP_BUILT
): $(STAMP_CONFIGURED
)
70 ifdef Build
/InstallDev
71 compile
: $(STAMP_BUILT
)
74 define Build
/DefaultTargets
79 $(eval
$(Package
/Default
))
80 $(eval
$(Package
/$(1)))
82 # <HACK> Support obsolete DESCRIPTION field
83 ifndef Package
/$(1)/description
84 define Package
/$(1)/description
91 $(foreach FIELD
, TITLE CATEGORY PRIORITY SECTION VERSION
,
93 $$(error Package
/$(1) is missing the
$(FIELD
) field
)
97 $(call shexport
,Package
/$(1)/description
)
98 $(call shexport
,Package
/$(1)/config
)
104 # prevent libtool from setting rpath when linking
105 define libtool_disable_rpath
106 find
$(PKG_BUILD_DIR
) -name
'libtool' |
$(XARGS
) \
107 $(SED
) 's,^hardcode_libdir_flag_spec=.*,hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ ",g'
110 # prevent libtool from linking against host development libraries
111 define libtool_fixup_libdir
112 find
$(PKG_BUILD_DIR
) -name
'*.la' |
$(XARGS
) \
113 $(SED
) "s,^libdir='/usr/lib',libdir='$(strip $(1))/usr/lib',g"
117 $(call Build
/Prepare
/Default
,)
120 define Build
/Configure
121 $(call Build
/Configure
/Default
,)
125 $(call Build
/Compile
/Default
,)
133 prepare
: $(STAMP_PREPARED
)
134 configure
: $(STAMP_CONFIGURED
)
138 $(Build
/UninstallDev
)
140 @
rm -f
$(STAGING_DIR
)/stamp
/.
$(PKG_NAME
)-installed
141 @
rm -rf
$(PKG_BUILD_DIR
)