From 7061d7b1f7260c885426ccae40a9e73c1316941a Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Sat, 23 Sep 2006 13:27:50 +0000 Subject: standardize Makfile, remove dup description git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4813 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/gmp/Makefile | 49 +++++++++++++------------------------------------ 1 file changed, 13 insertions(+), 36 deletions(-) (limited to 'package/gmp') diff --git a/package/gmp/Makefile b/package/gmp/Makefile index 1e84b88d26..cc13af3549 100644 --- a/package/gmp/Makefile +++ b/package/gmp/Makefile @@ -26,49 +26,21 @@ define Package/libgmp SECTION:=libs CATEGORY:=Libraries TITLE:=GNU multiprecision arithmetic library - DESCRIPTION:=GNU multiprecision arithmetic library. URL:=http://www.swox.com/gmp/ endef define Build/Configure - (cd $(PKG_BUILD_DIR); rm -f config.cache; \ - $(TARGET_CONFIGURE_OPTS) \ - CC="$(TARGET_CROSS)gcc" \ - CFLAGS="$(TARGET_CFLAGS)" \ - CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ - LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ - ./configure \ - --target=$(GNU_TARGET_NAME) \ - --host=$(GNU_TARGET_NAME) \ - --build=$(GNU_HOST_NAME) \ - --program-prefix="" \ - --program-suffix="" \ - --prefix=/usr \ - --exec-prefix=/usr \ - --bindir=/usr/bin \ - --datadir=/usr/share \ - --includedir=/usr/include \ - --infodir=/usr/share/info \ - --libdir=/usr/lib \ - --libexecdir=/usr/lib \ - --localstatedir=/var \ - --mandir=/usr/share/man \ - --sbindir=/usr/sbin \ - --sysconfdir=/etc \ - $(DISABLE_NLS) \ - $(DISABLE_LARGEFILE) \ - --enable-shared \ - --enable-static \ - ); + $(call Build/Configure/Default, \ + --enable-shared \ + --enable-static \ + ) endef define Build/Compile - $(call Build/Compile/Default, DESTDIR="$(PKG_INSTALL_DIR)" all install) -endef - -define Package/libgmp/install - install -m0755 -d $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgmp.so.* $(1)/usr/lib/ + $(call Build/Compile/Default, \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install \ + ) endef define Build/InstallDev @@ -84,4 +56,9 @@ define Build/UninstallDev $(STAGING_DIR)/usr/lib/libgmp.{a,so*} endef +define Package/libgmp/install + install -m0755 -d $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgmp.so.* $(1)/usr/lib/ +endef + $(eval $(call BuildPackage,libgmp)) -- cgit v1.2.3