2b93972f24360cc29fb9acd5257883cac5301eed
[openwrt/openwrt.git] / include / package.mk
1 #
2 # Copyright (C) 2006-2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 all: $(if $(DUMP),dumpinfo,compile)
9
10 PKG_BUILD_DIR ?= $(BUILD_DIR)/$(PKG_NAME)$(if $(PKG_VERSION),-$(PKG_VERSION))
11 PKG_INSTALL_DIR ?= $(PKG_BUILD_DIR)/ipkg-install
12 PKG_MD5SUM ?= unknown
13
14 include $(INCLUDE_DIR)/prereq.mk
15 include $(INCLUDE_DIR)/host.mk
16 include $(INCLUDE_DIR)/unpack.mk
17 include $(INCLUDE_DIR)/depends.mk
18
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
22
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
27
28 override MAKEFLAGS=
29 export CONFIG_SITE:=$(INCLUDE_DIR)/site/$(REAL_GNU_TARGET_NAME)
30
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*"))
37 endef
38 endif
39 endif
40
41
42 define Build/DefaultTargets
43 ifneq ($(strip $(PKG_SOURCE_URL)),)
44 download: $(DL_DIR)/$(PKG_SOURCE)
45
46 $(DL_DIR)/$(PKG_SOURCE):
47 mkdir -p $(DL_DIR)
48 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL)
49
50 $(STAMP_PREPARED): $(DL_DIR)/$(PKG_SOURCE)
51 endif
52
53 $(call Build/Autoclean)
54
55 $(STAMP_PREPARED):
56 @-rm -rf $(PKG_BUILD_DIR)
57 @mkdir -p $(PKG_BUILD_DIR)
58 $(Build/Prepare)
59 touch $$@
60
61 $(STAMP_CONFIGURED): $(STAMP_PREPARED)
62 $(Build/Configure)
63 touch $$@
64
65 $(STAMP_BUILT): $(STAMP_CONFIGURED)
66 $(Build/Compile)
67 $(call Build/InstallDev,$(STAGING_DIR))
68 touch $$@
69
70 ifdef Build/InstallDev
71 compile: $(STAMP_BUILT)
72 endif
73
74 define Build/DefaultTargets
75 endef
76 endef
77
78 define BuildPackage
79 $(eval $(Package/Default))
80 $(eval $(Package/$(1)))
81
82 # <HACK> Support obsolete DESCRIPTION field
83 ifndef Package/$(1)/description
84 define Package/$(1)/description
85 $(TITLE)$(subst \,
86 ,\ $(DESCRIPTION))
87 endef
88 endif
89 # </HACK>
90
91 $(foreach FIELD, TITLE CATEGORY PRIORITY SECTION VERSION,
92 ifeq ($($(FIELD)),)
93 $$(error Package/$(1) is missing the $(FIELD) field)
94 endif
95 )
96
97 $(call shexport,Package/$(1)/description)
98 $(call shexport,Package/$(1)/config)
99
100 $(if $(DUMP), \
101 $(Dumpinfo), \
102 $(foreach target, \
103 $(if $(Package/$(1)/targets),$(Package/$(1)/targets), \
104 $(if $(PKG_TARGETS),$(PKG_TARGETS), ipkg ) \
105 ), $(BuildTarget/$(target)) \
106 ) \
107 )
108 $(if $(DUMP),,$(call Build/DefaultTargets,$(1)))
109 endef
110
111 # prevent libtool from setting rpath when linking
112 define libtool_disable_rpath
113 find $(PKG_BUILD_DIR) -name 'libtool' | $(XARGS) \
114 $(SED) 's,^hardcode_libdir_flag_spec=.*,hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ ",g'
115 endef
116
117 # prevent libtool from linking against host development libraries
118 define libtool_fixup_libdir
119 find $(PKG_BUILD_DIR) -name '*.la' | $(XARGS) \
120 $(SED) "s,^libdir='/usr/lib',libdir='$(strip $(1))/usr/lib',g"
121 endef
122
123 define Build/Prepare
124 $(call Build/Prepare/Default,)
125 endef
126
127 define Build/Configure
128 $(call Build/Configure/Default,)
129 endef
130
131 define Build/Compile
132 $(call Build/Compile/Default,)
133 endef
134
135 $(PACKAGE_DIR):
136 mkdir -p $@
137
138 dumpinfo:
139 download:
140 prepare: $(STAMP_PREPARED)
141 configure: $(STAMP_CONFIGURED)
142 compile:
143 install:
144 clean: FORCE
145 $(call Build/UninstallDev,$(STAGING_DIR))
146 $(Build/Clean)
147 @rm -f $(STAGING_DIR)/stamp/.$(PKG_NAME)-installed
148 @rm -rf $(PKG_BUILD_DIR)