2005-04-26 08:26:14 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
2007-08-22 14:35:41 +02:00
|
|
|
# libsysfs
|
2005-04-26 08:26:14 +02:00
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
# Copyright (C) 2001-2003 by Erik Andersen <andersen@codepoet.org>
|
|
|
|
# Copyright (C) 2002 by Tim Riker <Tim@Rikers.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Library General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
# USA
|
|
|
|
|
2007-07-11 16:06:06 +02:00
|
|
|
LIBSYSFS_VERSION:=2.1.0
|
|
|
|
LIBSYSFS_DIR:=$(BUILD_DIR)/sysfsutils-$(LIBSYSFS_VERSION)
|
2005-06-09 14:15:00 +02:00
|
|
|
LIBSYSFS_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/linux-diag
|
2007-07-11 16:06:06 +02:00
|
|
|
LIBSYSFS_SOURCE:=sysfsutils-$(LIBSYSFS_VERSION).tar.gz
|
2006-10-01 17:17:52 +02:00
|
|
|
LIBSYSFS_CAT:=$(ZCAT)
|
2005-04-26 08:26:14 +02:00
|
|
|
|
|
|
|
$(DL_DIR)/$(LIBSYSFS_SOURCE):
|
2009-01-16 12:42:52 +01:00
|
|
|
$(call DOWNLOAD,$(LIBSYSFS_SITE),$(LIBSYSFS_SOURCE))
|
2005-04-26 08:26:14 +02:00
|
|
|
|
|
|
|
libsysfs-source: $(DL_DIR)/$(LIBSYSFS_SOURCE)
|
|
|
|
|
|
|
|
$(LIBSYSFS_DIR)/.unpacked: $(DL_DIR)/$(LIBSYSFS_SOURCE)
|
|
|
|
$(LIBSYSFS_CAT) $(DL_DIR)/$(LIBSYSFS_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
2007-04-16 20:51:20 +02:00
|
|
|
$(CONFIG_UPDATE) $(@D)
|
|
|
|
touch $@
|
2005-04-26 08:26:14 +02:00
|
|
|
|
|
|
|
$(LIBSYSFS_DIR)/.configured: $(LIBSYSFS_DIR)/.unpacked
|
2007-08-22 11:56:41 +02:00
|
|
|
(cd $(LIBSYSFS_DIR); rm -rf config.cache; \
|
2007-06-27 14:01:27 +02:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
$(TARGET_CONFIGURE_ARGS) \
|
|
|
|
./configure \
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
2007-08-21 21:20:18 +02:00
|
|
|
)
|
2007-04-16 20:51:20 +02:00
|
|
|
touch $@
|
2005-04-26 08:26:14 +02:00
|
|
|
|
|
|
|
$(LIBSYSFS_DIR)/.compiled: $(LIBSYSFS_DIR)/.configured
|
|
|
|
$(MAKE) -C $(LIBSYSFS_DIR)
|
2007-04-16 20:51:20 +02:00
|
|
|
touch $@
|
2005-04-26 08:26:14 +02:00
|
|
|
|
2007-04-16 20:51:20 +02:00
|
|
|
$(STAGING_DIR)/usr/lib/libsysfs.so: $(LIBSYSFS_DIR)/.compiled
|
2005-04-26 08:26:14 +02:00
|
|
|
$(MAKE) -C $(LIBSYSFS_DIR) DESTDIR=$(STAGING_DIR) install
|
2007-08-13 01:27:38 +02:00
|
|
|
$(SED) "s,^libdir=.*,libdir=\'$(STAGING_DIR)/usr/lib\',g" \
|
|
|
|
$(STAGING_DIR)/usr/lib/libsysfs.la
|
2007-04-16 20:51:20 +02:00
|
|
|
touch -c $@
|
2005-04-26 08:26:14 +02:00
|
|
|
|
2007-04-16 20:51:20 +02:00
|
|
|
$(TARGET_DIR)/usr/lib/libsysfs.so: $(STAGING_DIR)/usr/lib/libsysfs.so
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/lib/libsysfs.so* $(TARGET_DIR)/usr/lib/
|
2007-10-01 18:15:31 +02:00
|
|
|
-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libsysfs.so
|
2005-04-26 08:26:14 +02:00
|
|
|
|
|
|
|
libsysfs: uclibc $(TARGET_DIR)/usr/lib/libsysfs.so
|
|
|
|
|
|
|
|
libsysfs-clean:
|
|
|
|
-$(MAKE) -C $(LIBSYSFS_DIR) clean
|
2007-04-16 20:51:20 +02:00
|
|
|
-$(MAKE) -C $(LIBSYSFS_DIR) DESTDIR=$(STAGING_DIR) uninstall
|
2006-12-14 16:37:42 +01:00
|
|
|
rm -f $(TARGET_DIR)/usr/lib/libsysfs.so*
|
2005-12-20 16:09:40 +01:00
|
|
|
|
|
|
|
libsysfs-dirclean:
|
|
|
|
rm -rf $(LIBSYSFS_DIR)
|
|
|
|
|
2005-04-26 08:26:14 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
2008-12-08 09:15:27 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBSYSFS),y)
|
2005-04-26 08:26:14 +02:00
|
|
|
TARGETS+=libsysfs
|
|
|
|
endif
|