b237884b64454cb43a1eb3326f63b40193d60114
[openwrt/staging/mkresin.git] / tools / libtool / Makefile
1 #
2 # Copyright (C) 2008-2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=libtool
10 PKG_CPE_ID:=cpe:/a:gnu:libtool
11 PKG_VERSION:=2.4.6
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
14 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
15 PKG_HASH:=7c87a8c2c8c0fc9cd5019e402bed4292462d00a718a7cd5f11218153bf28b26f
16
17 HOST_BUILD_PARALLEL:=1
18
19 include $(INCLUDE_DIR)/host-build.mk
20
21 HOST_CONFIGURE_VARS += \
22 lt_cv_sys_dlsearch_path=""
23
24 define Host/Prepare
25 $(call Host/Prepare/Default)
26 (cd $(STAGING_DIR_HOST)/share/aclocal/ && rm -f libtool.m4 ltdl.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4)
27 $(if $(QUILT),,(cd $(HOST_BUILD_DIR); touch README-release; $(AM_TOOL_PATHS) ./bootstrap --skip-git --skip-po --force))
28 endef
29
30 define Host/Configure
31 $(if $(QUILT),(cd $(HOST_BUILD_DIR); touch README-release; $(AM_TOOL_PATHS) ./bootstrap --skip-git --skip-po --force))
32 $(call Host/Configure/Default)
33 endef
34
35 define Host/Install
36 $(MAKE) -C $(HOST_BUILD_DIR) install
37 $(SED) 's,\(hardcode_into_libs\)=yes,\1=no,g' $(STAGING_DIR_HOST)/bin/libtool
38 $(CP) $(STAGING_DIR_HOST)/bin/libtool $(STAGING_DIR_HOST)/bin/libtool-ucxx
39 $(SED) 's,-lstdc++,-luClibc++,g' $(STAGING_DIR_HOST)/bin/libtool-ucxx
40 endef
41
42 define Host/Clean
43 -$(MAKE) -C $(HOST_BUILD_DIR) uninstall
44 $(call Host/Clean/Default)
45 endef
46
47 $(eval $(call HostBuild))