source: freewrt/package/libelf/Makefile@ 021d11b

freewrt_1_0 freewrt_2_0
Last change on this file since 021d11b was c57fbc9, checked in by Thorsten Glaser <tg@…>, 19 years ago

nuke DISABLE_NLS, DISABLE_LARGEFILE, replace globally
with --disable-nls and --enable-largefile, because it
doesn't make sense otherwise and/or breaks.

Requested by wbx@ in Message-ID: <20060618220406.GL6291@…>
Done using find and ed(1)

git-svn-id: svn://www.freewrt.org/trunk/freewrt@152 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 2.4 KB
Line 
1# $Id: Makefile 3112 2006-02-01 23:53:19Z mbm $
2
3include $(TOPDIR)/rules.mk
4
5PKG_NAME:=libelf
6PKG_VERSION:=0.8.5
7PKG_RELEASE:=1
8PKG_MD5SUM:=c1daf069367871350ece779b7de20047
9
10PKG_SOURCE_URL:=http://www.mr511.de/software/
11PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
12PKG_CAT:=zcat
13
14PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
15PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
16
17include $(TOPDIR)/package/rules.mk
18
19$(eval $(call PKG_template,LIBELF,libelf,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(PKG_BUILD_DIR)/.configured:
22 (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
23 $(TARGET_CONFIGURE_OPTS) \
24 CFLAGS="$(TARGET_CFLAGS)" \
25 CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
26 LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
27 mr_cv_target_elf=yes \
28 libelf_64bit=yes \
29 libelf_cv_struct_elf64_ehdr=yes \
30 libelf_cv_type_elf64_addr=no \
31 libelf_cv_struct_elf64_rel=yes \
32 ac_cv_sizeof_long_long=8 \
33 ./configure \
34 --target=$(GNU_TARGET_NAME) \
35 --host=$(GNU_TARGET_NAME) \
36 --build=$(GNU_HOST_NAME) \
37 --program-prefix="" \
38 --program-suffix="" \
39 --prefix=/usr \
40 --exec-prefix=/usr \
41 --bindir=/usr/bin \
42 --datadir=/usr/share \
43 --includedir=/usr/include \
44 --infodir=/usr/share/info \
45 --libdir=/usr/lib \
46 --libexecdir=/usr/lib \
47 --localstatedir=/var \
48 --mandir=/usr/share/man \
49 --sbindir=/usr/sbin \
50 --sysconfdir=/etc \
51 --enable-largefile \
52 --disable-nls \
53 --enable-shared \
54 --enable-static \
55 --enable-elf64=yes \
56 );
57 touch $@
58
59$(PKG_BUILD_DIR)/.built:
60 rm -rf $(PKG_INSTALL_DIR)
61 mkdir -p $(PKG_INSTALL_DIR)
62 $(MAKE) -C $(PKG_BUILD_DIR) -j1 \
63 CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld ARCH=$(ARCH) \
64 instroot="$(PKG_INSTALL_DIR)" \
65 all install
66 touch $@
67
68$(IPKG_LIBELF):
69 install -d -m0755 $(IDIR_LIBELF)/usr/lib
70 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelf.so.* $(IDIR_LIBELF)/usr/lib/
71 $(RSTRIP) $(IDIR_LIBELF)
72 $(IPKG_BUILD) $(IDIR_LIBELF) $(PACKAGE_DIR)
73
74$(STAGING_DIR)/usr/lib/libelf.so: $(PKG_BUILD_DIR)/.built
75 mkdir -p $(STAGING_DIR)/usr/include
76 $(CP) $(PKG_INSTALL_DIR)/usr/include/libelf* $(STAGING_DIR)/usr/include/
77 mkdir -p $(STAGING_DIR)/usr/lib
78 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelf.{a,so*} $(STAGING_DIR)/usr/lib/
79
80install-dev: $(STAGING_DIR)/usr/lib/libelf.so
81
82uninstall-dev:
83 rm -rf $(STAGING_DIR)/usr/include/libelf*
84 rm -rf $(STAGING_DIR)/usr/lib/libelf.{a,so*}
85
86compile-targets: install-dev
87clean-targets: uninstall-dev
Note: See TracBrowser for help on using the repository browser.