Makefile 686 B

12345678910111213141516171819202122232425
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include ${TOPDIR}/rules.mk
  6. include ${TOPDIR}/toolchain/gmp/Makefile.inc
  7. PKG_DESCR:= GNU multiprecision arithmetic library
  8. PKG_SECTION:= libs
  9. PKG_URL:= http://gmplib.org
  10. include ${TOPDIR}/mk/package.mk
  11. $(eval $(call PKG_template,LIBGMP,libgmp,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  12. CONFIGURE_STYLE:= gnu
  13. BUILD_STYLE:= auto
  14. INSTALL_STYLE:= auto
  15. post-install:
  16. ${INSTALL_DIR} ${IDIR_LIBGMP}/usr/lib
  17. ${CP} ${WRKINST}/usr/lib/libgmp.so.* ${IDIR_LIBGMP}/usr/lib/
  18. include ${TOPDIR}/mk/pkg-bottom.mk