From b7d4f49c6114e4b6dc95f17f13648e8758123c63 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 9 Jan 2003 02:34:10 +0000 Subject: Support more build system junk -Erik --- make/libtool.mk | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 make/libtool.mk (limited to 'make/libtool.mk') diff --git a/make/libtool.mk b/make/libtool.mk new file mode 100644 index 000000000..ca2702d86 --- /dev/null +++ b/make/libtool.mk @@ -0,0 +1,61 @@ +############################################################# +# +# libtool +# +############################################################# +LIBTOOL_SOURCE:=libtool-1.4.3.tar.gz +LIBTOOL_SITE:=ftp://ftp.gnu.org/gnu/libtool +LIBTOOL_CAT:=zcat +LIBTOOL_DIR:=$(BUILD_DIR)/libtool-1.4.3 +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) + $(LIBTOOL_CAT) $(DL_DIR)/$(LIBTOOL_SOURCE) | tar -C $(BUILD_DIR) -xvf - + touch $(LIBTOOL_DIR)/.unpacked + +$(LIBTOOL_DIR)/.configured: $(LIBTOOL_DIR)/.unpacked + (cd $(LIBTOOL_DIR); rm -f config.cache; CC=$(TARGET_CC1) \ + CFLAGS=-D_POSIX_SOURCE ./configure \ + --target=i386-uclibc \ + --prefix=/usr \ + --exec-prefix=/usr \ + ); + touch $(LIBTOOL_DIR)/.configured + +$(LIBTOOL_DIR)/$(LIBTOOL_BINARY): $(LIBTOOL_DIR)/.configured + $(MAKE) CC=$(TARGET_CC1) -C $(LIBTOOL_DIR) + touch -c $(LIBTOOL_DIR)/$(LIBTOOL_BINARY) + +$(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY): $(LIBTOOL_DIR)/$(LIBTOOL_BINARY) + PATH=$(STAGING_DIR)/bin:$$PATH CC=$(TARGET_CC1) \ + $(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; + rm -rf $(TARGET_DIR)/share/locale + +libtool: uclibc $(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY) + +libtool-clean: + $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC1) -C $(LIBTOOL_DIR) uninstall + -make -C $(LIBTOOL_DIR) clean + +libtool-dirclean: + rm -rf $(LIBTOOL_DIR) + -- cgit v1.2.3