65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
|
#
|
||
|
# Copyright (C) 2007 OpenWrt.org
|
||
|
#
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
# $Id: $
|
||
|
|
||
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=libatomicops
|
||
|
PKG_VERSION:=1.2
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
PKG_SOURCE:=libatomic_ops-$(PKG_VERSION).tar.gz
|
||
|
PKG_SOURCE_URL:=http://www.hpl.hp.com/research/linux/atomic_ops/download/
|
||
|
PKG_MD5SUM:=1b65e48271c81e3fa2d7a9a69bab7504
|
||
|
|
||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/libatomic_ops-$(PKG_VERSION)
|
||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
define Package/libatomicops
|
||
|
SECTION:=libs
|
||
|
CATEGORY:=Libraries
|
||
|
TITLE:=implementations for atomic memory update operations
|
||
|
URL:=http://www.hpl.hp.com/research/linux/atomic_ops/
|
||
|
endef
|
||
|
|
||
|
define Package/libatomicops/description
|
||
|
Provides implementations for atomic memory update
|
||
|
operations on a number of architectures. This allows
|
||
|
direct use of these in reasonably portable code. Unlike
|
||
|
earlier similar packages, this one explicitly considers
|
||
|
memory barrier semantics, and allows the construction of
|
||
|
code that involves minimum overhead across a variety of
|
||
|
architectures.
|
||
|
endef
|
||
|
|
||
|
CONFIGURE_ARGS += \
|
||
|
--enable-shared \
|
||
|
--enable-static \
|
||
|
|
||
|
define Build/Compile
|
||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||
|
all install
|
||
|
endef
|
||
|
|
||
|
define Build/InstallDev
|
||
|
mkdir -p $(1)/usr/include/atomicops/
|
||
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/atomic_ops{,_malloc,_stack}.h $(1)/usr/include/atomicops/
|
||
|
mkdir -p $(1)/usr/lib
|
||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libatomic_ops*.a $(1)/usr/lib/
|
||
|
endef
|
||
|
|
||
|
define Build/UninstallDev
|
||
|
rm -rf \
|
||
|
$(STAGING_DIR)/usr/include/libatomicops \
|
||
|
$(STAGING_DIR)/usr/lib/libatomic_ops*.a
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,libatomicops))
|