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
$(QUILT
)$(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
)/download.mk
24 include $(INCLUDE_DIR
)/quilt.mk
25 include $(INCLUDE_DIR
)/package-defaults.mk
26 include $(INCLUDE_DIR
)/package-dumpinfo.mk
27 include $(INCLUDE_DIR
)/package-ipkg.mk
28 include $(INCLUDE_DIR
)/package-bin.mk
31 export CONFIG_SITE
:=$(INCLUDE_DIR
)/site
/$(REAL_GNU_TARGET_NAME
)
33 ifeq ($(DUMP
)$(filter prereq
clean refresh update
,$(MAKECMDGOALS
)),)
34 ifneq ($(if
$(QUILT
),,$(CONFIG_AUTOREBUILD
)),)
35 define Build
/Autoclean
36 $(PKG_BUILD_DIR
)/.dep_files
: $(STAMP_PREPARED
)
37 $(call rdep
,${CURDIR} $(PKG_FILE_DEPEND
),$(STAMP_PREPARED
),$(PKG_BUILD_DIR
)/.dep_files
,-x
"*/.dep_*")
38 $(if
$(filter prepare
,$(MAKECMDGOALS
)),,$(call rdep
,$(PKG_BUILD_DIR
),$(STAMP_BUILT
),,-x
"*/.dep_*" -x
"*/ipkg*"))
43 define Download
/default
45 URL
:=$(PKG_SOURCE_URL
)
46 PROTO
:=$(PKG_SOURCE_PROTO
)
47 VERSION
:=$(PKG_SOURCE_VERSION
)
51 define Build
/DefaultTargets
52 $(if
$(QUILT
),$(Build
/Quilt
))
53 $(if
$(strip $(PKG_SOURCE_URL
)),$(call Download
,default
))
54 $(call Build
/Autoclean
)
57 @
-rm -rf
$(PKG_BUILD_DIR
)
58 @mkdir
-p
$(PKG_BUILD_DIR
)
62 $(STAMP_CONFIGURED
): $(STAMP_PREPARED
)
66 $(STAMP_BUILT
): $(STAMP_CONFIGURED
)
68 $(call Build
/InstallDev
,$(STAGING_DIR
))
71 ifdef Build
/InstallDev
72 compile
: $(STAMP_BUILT
)
75 define Build
/DefaultTargets
80 $(eval
$(Package
/Default
))
81 $(eval
$(Package
/$(1)))
84 $$(error DESCRIPTION
:= is obselete
, use Package
/PKG_NAME
/description
)
87 ifndef Package
/$(1)/description
88 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
)
105 $(if
$(Package
/$(1)/targets
),$(Package
/$(1)/targets
), \
106 $(if
$(PKG_TARGETS
),$(PKG_TARGETS
), ipkg
) \
107 ), $(BuildTarget
/$(target
)) \
110 $(if
$(DUMP
),,$(call Build
/DefaultTargets
,$(1)))
113 # prevent libtool from setting rpath when linking
114 define libtool_disable_rpath
115 find
$(PKG_BUILD_DIR
) -name
'libtool' |
$(XARGS
) \
116 $(SED
) 's,^hardcode_libdir_flag_spec=.*,hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ ",g'
119 # prevent libtool from linking against host development libraries
120 define libtool_fixup_libdir
121 find
$(PKG_BUILD_DIR
) -name
'*.la' |
$(XARGS
) \
122 $(SED
) "s,^libdir='/usr/lib',libdir='$(strip $(1))/usr/lib',g"
125 define pkg_install_files
126 $(foreach install_file
,$(1),$(INSTALL_DIR
) $(3)/`dirname $(install_file)`; $(INSTALL_DATA
) $(2)/$(install_file
) $(3)/`dirname $(install_file)`;)
129 define pkg_install_bin
130 $(foreach install_apps
,$(1),$(INSTALL_DIR
) $(3)/`dirname $(install_file)`; $(INSTALL_BIN
) $(2)/$(install_file
) $(3)/`dirname $(install_file)`;)
134 $(call Build
/Prepare
/Default
,)
137 define Build
/Configure
138 $(call Build
/Configure
/Default
,)
142 $(call Build
/Compile
/Default
,)
150 prepare
: $(STAMP_PREPARED
)
151 configure
: $(STAMP_CONFIGURED
)
155 $(call Build
/UninstallDev
,$(STAGING_DIR
))
157 @
rm -f
$(STAGING_DIR
)/stamp
/.
$(PKG_NAME
)-installed
158 @
rm -rf
$(PKG_BUILD_DIR
)