2006-10-30 11:14:05 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
2006-06-16 21:23:58 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=binutils
|
|
|
|
PKG_VERSION:=2.16.1
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2006-10-30 11:14:05 +00:00
|
|
|
PKG_SOURCE_URL:=ftp://ftp.gnu.org/gnu/binutils
|
|
|
|
PKG_MD5SUM:=6a9d529efb285071dad10e1f3d2b2967
|
2006-06-16 21:23:58 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2006-06-16 21:23:58 +00:00
|
|
|
|
|
|
|
TARGETS:=$(GNU_TARGET_NAME)
|
|
|
|
|
|
|
|
define Build/Configure
|
2006-10-30 11:14:05 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--enable-install-libbfd \
|
|
|
|
--enable-commonbfdlib \
|
|
|
|
--disable-nls \
|
|
|
|
--enable-targets="$(TARGETS)" \
|
|
|
|
, \
|
|
|
|
, \
|
|
|
|
bfd \
|
|
|
|
)
|
2006-06-16 21:23:58 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/bfd \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2007-10-07 03:20:26 +00:00
|
|
|
mkdir -p $(1)/usr/include
|
2006-10-30 11:14:05 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/ansidecl.h \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/bfd{,link}.h \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/symcat.h \
|
2007-10-07 03:20:26 +00:00
|
|
|
$(1)/usr/include/
|
|
|
|
mkdir -p $(1)/usr/lib
|
2006-10-30 11:14:05 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libbfd.a \
|
2007-10-07 03:20:26 +00:00
|
|
|
$(1)/usr/lib/
|
2006-06-16 21:23:58 +00:00
|
|
|
endef
|
|
|
|
|
2006-06-17 15:21:12 +00:00
|
|
|
$(eval $(call Build/DefaultTargets))
|