From: Nicolas Thill Date: Sun, 2 Jul 2006 13:36:54 +0000 (+0000) Subject: move libpthread in since it's part of uclibc, standardize Makefile. X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=b9c46760512a5d4c35330244523f393d445c37ac move libpthread in since it's part of uclibc, standardize Makefile. SVN-Revision: 4105 --- diff --git a/libs/libpthread/Makefile b/libs/libpthread/Makefile deleted file mode 100644 index 5be6160f46..0000000000 --- a/libs/libpthread/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: Makefile 3843 2006-05-30 18:55:52Z nbd $ - -include $(TOPDIR)/rules.mk - -PKG_NAME:=libpthread -PKG_VERSION:=0.9.8 -PKG_RELEASE:=1 - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) -PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install - -include $(INCLUDE_DIR)/package.mk - -define Package/libpthread -SECTION:=libs -CATEGORY:=Libraries -TITLE:=A POSIX thread library -DESCRIPTION:=A POSIX thread library -endef - -define Build/Configure -endef - -define Build/Compile -endef - -define Package/libpthread/install - install -m0755 -d $(1)/lib - $(CP) $(STAGING_DIR)/lib/libpthread.so.* $(1)/lib/ - $(CP) $(STAGING_DIR)/lib/libpthread-*.so $(1)/lib/ -endef - -define Build/InstallDev -endef - -define Build/UninstallDev -endef - -$(eval $(call BuildPackage,libpthread))