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 SUBDIR
:=$(PKG_SOURCE_SUBDIR
)
47 PROTO
:=$(PKG_SOURCE_PROTO
)
48 VERSION
:=$(PKG_SOURCE_VERSION
)
52 define Build
/DefaultTargets
53 $(if
$(QUILT
),$(Build
/Quilt
))
54 $(if
$(strip $(PKG_SOURCE_URL
)),$(call Download
,default
))
55 $(call Build
/Autoclean
)
58 @
-rm -rf
$(PKG_BUILD_DIR
)
59 @mkdir
-p
$(PKG_BUILD_DIR
)
63 $(STAMP_CONFIGURED
): $(STAMP_PREPARED
)
67 $(STAMP_BUILT
): $(STAMP_CONFIGURED
)
69 $(call Build
/InstallDev
,$(STAGING_DIR
))
72 ifdef Build
/InstallDev
73 compile
: $(STAMP_BUILT
)
76 define Build
/DefaultTargets
81 $(eval
$(Package
/Default
))
82 $(eval
$(Package
/$(1)))
85 $$(error DESCRIPTION
:= is obselete
, use Package
/PKG_NAME
/description
)
88 ifndef Package
/$(1)/description
89 define Package
/$(1)/description
94 $(foreach FIELD
, TITLE CATEGORY PRIORITY SECTION VERSION
,
96 $$(error Package
/$(1) is missing the
$(FIELD
) field
)
100 $(call shexport
,Package
/$(1)/description
)
101 $(call shexport
,Package
/$(1)/config
)
106 $(if
$(Package
/$(1)/targets
),$(Package
/$(1)/targets
), \
107 $(if
$(PKG_TARGETS
),$(PKG_TARGETS
), ipkg
) \
108 ), $(BuildTarget
/$(target
)) \
111 $(if
$(DUMP
),,$(call Build
/DefaultTargets
,$(1)))
114 # prevent libtool from setting rpath when linking
115 define libtool_disable_rpath
116 find
$(PKG_BUILD_DIR
) -name
'libtool' |
$(XARGS
) \
117 $(SED
) 's,^hardcode_libdir_flag_spec=.*,hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ ",g'
120 # prevent libtool from linking against host development libraries
121 define libtool_fixup_libdir
122 find
$(PKG_BUILD_DIR
) -name
'*.la' |
$(XARGS
) \
123 $(SED
) "s,^libdir='/usr/lib',libdir='$(strip $(1))/usr/lib',g"
126 define pkg_install_files
127 $(foreach install_file
,$(1),$(INSTALL_DIR
) $(3)/`dirname $(install_file)`; $(INSTALL_DATA
) $(2)/$(install_file
) $(3)/`dirname $(install_file)`;)
130 define pkg_install_bin
131 $(foreach install_apps
,$(1),$(INSTALL_DIR
) $(3)/`dirname $(install_file)`; $(INSTALL_BIN
) $(2)/$(install_file
) $(3)/`dirname $(install_file)`;)
135 $(call Build
/Prepare
/Default
,)
138 define Build
/Configure
139 $(call Build
/Configure
/Default
,)
143 $(call Build
/Compile
/Default
,)
151 prepare
: $(STAMP_PREPARED
)
152 configure
: $(STAMP_CONFIGURED
)
156 $(call Build
/UninstallDev
,$(STAGING_DIR
))
158 @
rm -f
$(STAGING_DIR
)/stamp
/.
$(PKG_NAME
)-installed
159 @
rm -rf
$(PKG_BUILD_DIR
)