From: Lars-Peter Clausen Date: Fri, 12 Sep 2008 22:14:07 +0000 (+0000) Subject: Cleanup libol Makefile. X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=fc9f442fc88116b4d83694e6917d7b7c60294d3f;ds=inline Cleanup libol Makefile. SVN-Revision: 12583 --- diff --git a/libs/libol/Makefile b/libs/libol/Makefile index 0d4c2f919e..f47f66fdf3 100644 --- a/libs/libol/Makefile +++ b/libs/libol/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2006 OpenWrt.org +# +# Copyright (C) 2006-2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -15,6 +15,7 @@ PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.balabit.com/downloads/libol/0.3 PKG_MD5SUM:=cbadf4b7ea276dfa85acc38a1cc5ff17 +PKG_FIXUP:=libtool include $(INCLUDE_DIR)/package.mk @@ -43,17 +44,27 @@ define Build/Compile endef define Build/InstallDev - mkdir -p $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/libol-config $(1)/usr/bin/ - mkdir -p $(1)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/include/libol $(1)/usr/include/ - mkdir -p $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libol.{*a,so*} $(1)/usr/lib/ + $(INSTALL_DIR) $(2)/bin + $(INSTALL_BIN) \ + $(PKG_INSTALL_DIR)/usr/bin/libol-config \ + $(2)/bin/ + + $(INSTALL_DIR) $(1)/usr/include/libol + $(INSTALL_DATA) \ + $(PKG_INSTALL_DIR)/usr/include/libol/*.h \ + $(1)/usr/include/libol/ + + $(INSTALL_DIR) $(1)/usr/lib + $(INSTALL_DATA) \ + $(PKG_INSTALL_DIR)/usr/lib/libol.{la,so*} \ + $(1)/usr/lib/ endef define Package/libol/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libol.so.* $(1)/usr/lib/ + $(INSTALL_DATA) \ + $(PKG_INSTALL_DIR)/usr/lib/libol.{a,so*} \ + $(1)/usr/lib/ endef $(eval $(call BuildPackage,libol))