2003-01-09 03:34:10 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# libtool
|
|
|
|
#
|
|
|
|
#############################################################
|
2004-09-03 02:49:43 +02:00
|
|
|
LIBTOOL_SOURCE:=libtool-1.5.8.tar.gz
|
|
|
|
LIBTOOL_SITE:=ftp://ftp.gnu.org/gnu/libtool
|
2003-01-09 03:34:10 +01:00
|
|
|
LIBTOOL_CAT:=zcat
|
2004-09-03 02:49:43 +02:00
|
|
|
LIBTOOL_DIR:=$(BUILD_DIR)/libtool-1.5.8
|
2003-01-09 03:34:10 +01:00
|
|
|
LIBTOOL_BINARY:=libtool
|
|
|
|
LIBTOOL_TARGET_BINARY:=usr/bin/libtool
|
|
|
|
|
|
|
|
$(DL_DIR)/$(LIBTOOL_SOURCE):
|
|
|
|
$(WGET) -P $(DL_DIR) $(LIBTOOL_SITE)/$(LIBTOOL_SOURCE)
|
|
|
|
|
|
|
|
libtool-source: $(DL_DIR)/$(LIBTOOL_SOURCE)
|
|
|
|
|
|
|
|
$(LIBTOOL_DIR)/.unpacked: $(DL_DIR)/$(LIBTOOL_SOURCE)
|
2004-10-09 23:19:47 +02:00
|
|
|
$(LIBTOOL_CAT) $(DL_DIR)/$(LIBTOOL_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
2003-01-09 03:34:10 +01:00
|
|
|
touch $(LIBTOOL_DIR)/.unpacked
|
|
|
|
|
|
|
|
$(LIBTOOL_DIR)/.configured: $(LIBTOOL_DIR)/.unpacked
|
2003-01-17 09:03:59 +01:00
|
|
|
(cd $(LIBTOOL_DIR); rm -rf config.cache; \
|
2003-03-04 20:16:19 +01:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2003-11-01 06:34:41 +01:00
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
2003-01-17 09:03:59 +01:00
|
|
|
./configure \
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
2003-03-04 20:16:19 +01:00
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
2003-01-09 03:34:10 +01:00
|
|
|
--prefix=/usr \
|
|
|
|
--exec-prefix=/usr \
|
2003-01-17 09:03:59 +01:00
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--datadir=/usr/share \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--infodir=/usr/info \
|
2003-09-03 09:18:18 +02:00
|
|
|
$(DISABLE_NLS) \
|
2003-01-09 03:34:10 +01:00
|
|
|
);
|
|
|
|
touch $(LIBTOOL_DIR)/.configured
|
|
|
|
|
|
|
|
$(LIBTOOL_DIR)/$(LIBTOOL_BINARY): $(LIBTOOL_DIR)/.configured
|
2003-01-19 07:07:22 +01:00
|
|
|
$(MAKE) CC=$(TARGET_CC) -C $(LIBTOOL_DIR)
|
2003-01-09 03:34:10 +01:00
|
|
|
touch -c $(LIBTOOL_DIR)/$(LIBTOOL_BINARY)
|
|
|
|
|
|
|
|
$(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY): $(LIBTOOL_DIR)/$(LIBTOOL_BINARY)
|
|
|
|
$(MAKE) \
|
|
|
|
prefix=$(TARGET_DIR)/usr \
|
|
|
|
exec_prefix=$(TARGET_DIR)/usr \
|
|
|
|
bindir=$(TARGET_DIR)/usr/bin \
|
|
|
|
sbindir=$(TARGET_DIR)/usr/sbin \
|
|
|
|
libexecdir=$(TARGET_DIR)/usr/lib \
|
|
|
|
datadir=$(TARGET_DIR)/usr/share \
|
|
|
|
sysconfdir=$(TARGET_DIR)/etc \
|
|
|
|
localstatedir=$(TARGET_DIR)/var \
|
|
|
|
libdir=$(TARGET_DIR)/usr/lib \
|
|
|
|
infodir=$(TARGET_DIR)/usr/info \
|
|
|
|
mandir=$(TARGET_DIR)/usr/man \
|
|
|
|
includedir=$(TARGET_DIR)/usr/include \
|
|
|
|
-C $(LIBTOOL_DIR) install;
|
2003-11-01 06:34:41 +01:00
|
|
|
$(STRIP) $(TARGET_DIR)//usr/lib/libltdl.so.*.*.* > /dev/null 2>&1
|
2003-11-19 18:17:56 +01:00
|
|
|
$(SED) "s,^CC.*,CC=\"/usr/bin/gcc\"," $(TARGET_DIR)/usr/bin/libtool
|
|
|
|
$(SED) "s,^LD.*,LD=\"/usr/bin/ld\"," $(TARGET_DIR)/usr/bin/libtool
|
2003-02-14 13:20:38 +01:00
|
|
|
rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
|
|
|
|
$(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
2003-01-09 03:34:10 +01:00
|
|
|
|
|
|
|
libtool: uclibc $(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY)
|
|
|
|
|
|
|
|
libtool-clean:
|
2003-01-19 07:07:22 +01:00
|
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(LIBTOOL_DIR) uninstall
|
2003-01-17 09:03:59 +01:00
|
|
|
-$(MAKE) -C $(LIBTOOL_DIR) clean
|
2003-01-09 03:34:10 +01:00
|
|
|
|
|
|
|
libtool-dirclean:
|
|
|
|
rm -rf $(LIBTOOL_DIR)
|
|
|
|
|
2005-02-10 04:06:39 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_LIBTOOL)),y)
|
|
|
|
TARGETS+=libtool
|
|
|
|
endif
|