mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 12:23:08 +02:00
e80fbee356
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2103 3c298f89-4303-0410-b956-a3cf2f4a3e73
90 lines
2.3 KiB
Makefile
90 lines
2.3 KiB
Makefile
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libelf
|
|
PKG_VERSION:=0.8.5
|
|
PKG_RELEASE:=1
|
|
PKG_MD5SUM:=c1daf069367871350ece779b7de20047
|
|
|
|
PKG_SOURCE_URL:=http://www.mr511.de/software/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_CAT:=zcat
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
include $(TOPDIR)/package/rules.mk
|
|
|
|
$(eval $(call PKG_template,LIBELF,libelf,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|
|
|
.NOTPARALLEL:
|
|
|
|
$(PKG_BUILD_DIR)/.configured:
|
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
|
mr_cv_target_elf=yes \
|
|
libelf_64bit=yes \
|
|
libelf_cv_struct_elf64_ehdr=yes \
|
|
libelf_cv_type_elf64_addr=no \
|
|
libelf_cv_struct_elf64_rel=yes \
|
|
ac_cv_sizeof_long_long=8 \
|
|
./configure \
|
|
--target=$(GNU_TARGET_NAME) \
|
|
--host=$(GNU_TARGET_NAME) \
|
|
--build=$(GNU_HOST_NAME) \
|
|
--program-prefix="" \
|
|
--program-suffix="" \
|
|
--prefix=/usr \
|
|
--exec-prefix=/usr \
|
|
--bindir=/usr/bin \
|
|
--datadir=/usr/share \
|
|
--includedir=/usr/include \
|
|
--infodir=/usr/share/info \
|
|
--libdir=/usr/lib \
|
|
--libexecdir=/usr/lib \
|
|
--localstatedir=/var \
|
|
--mandir=/usr/share/man \
|
|
--sbindir=/usr/sbin \
|
|
--sysconfdir=/etc \
|
|
$(DISABLE_LARGEFILE) \
|
|
$(DISABLE_NLS) \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--enable-elf64=yes \
|
|
);
|
|
touch $@
|
|
|
|
$(PKG_BUILD_DIR)/.built:
|
|
rm -rf $(PKG_INSTALL_DIR)
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
$(MAKE) -C $(PKG_BUILD_DIR) -j1 \
|
|
CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld ARCH=$(ARCH) \
|
|
instroot="$(PKG_INSTALL_DIR)" \
|
|
all install
|
|
touch $@
|
|
|
|
$(IPKG_LIBELF):
|
|
install -d -m0755 $(IDIR_LIBELF)/usr/lib
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libelf.so.* $(IDIR_LIBELF)/usr/lib/
|
|
$(RSTRIP) $(IDIR_LIBELF)
|
|
$(IPKG_BUILD) $(IDIR_LIBELF) $(PACKAGE_DIR)
|
|
|
|
$(STAGING_DIR)/usr/lib/libelf.so: $(PKG_BUILD_DIR)/.built
|
|
mkdir -p $(STAGING_DIR)/usr/include
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/include/libelf* $(STAGING_DIR)/usr/include/
|
|
mkdir -p $(STAGING_DIR)/usr/lib
|
|
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/libelf.{a,so*} $(STAGING_DIR)/usr/lib/
|
|
|
|
install-dev: $(STAGING_DIR)/usr/lib/libelf.so
|
|
|
|
uninstall-dev:
|
|
rm -rf $(STAGING_DIR)/usr/include/libelf*
|
|
rm -rf $(STAGING_DIR)/usr/lib/libelf.{a,so*}
|
|
|
|
compile: install-dev
|
|
clean: uninstall-dev
|