Makefile 676 B

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