From 1de4e257583ac032a563c0fed29943180f378056 Mon Sep 17 00:00:00 2001 From: lars Date: Mon, 11 Jan 2010 11:18:26 +0000 Subject: [PATCH] Add libuuid Makefile. Oops... git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19105 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- tools/libuuid/Makefile | 50 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 tools/libuuid/Makefile diff --git a/tools/libuuid/Makefile b/tools/libuuid/Makefile new file mode 100644 index 000000000..672591fe1 --- /dev/null +++ b/tools/libuuid/Makefile @@ -0,0 +1,50 @@ +# +# Copyright (C) 2006-2008 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=e2fsprogs +PKG_VERSION:=1.40.11 +PKG_MD5SUM:=004cea70d724fdc7f1a952dffe4c9db8 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@SF/e2fsprogs + +include $(INCLUDE_DIR)/host-build.mk + +define Host/Configure + $(call Host/Configure/Default,\ + --enable-shared \ + --enable-static \ + --disable-rpath \ + --enable-elf-shlibs \ + --disable-dynamic-e2fsck \ + --disable-tls \ + --disable-uuidd \ + --without-libiconv-prefix \ + --without-libintl-prefix \ + ) +endef + +define Host/Compile + $(MAKE) -C $(HOST_BUILD_DIR)/lib/uuid +endef + +define Host/Install + $(INSTALL_DIR) $(STAGING_DIR_HOST)/{lib,include} + $(CP) $(HOST_BUILD_DIR)/lib/uuid/uuid.h $(STAGING_DIR_HOST)/include/ + $(CP) $(HOST_BUILD_DIR)/lib/uuid/libuuid.{so*,a} $(STAGING_DIR_HOST)/lib/ +endef + +define Host/Clean + rm -f $(STAGING_DIR_HOST)/include/uuid.h + rm -f $(STAGING_DIR_HOST)/lib/uuid/libuuid.{so*,a} + $(call Host/Clean/Default) +endef + +$(eval $(call HostBuild)) -- 2.35.1