Makefile 705 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/gdb/Makefile.inc
  5. PKG_DESCR:= GNU debugger (small server)
  6. PKG_SECTION:= debug
  7. PKG_DEPENDS:= libthread-db
  8. PKG_TARGET_DEPENDS:= !foxboard
  9. include ${TOPDIR}/mk/package.mk
  10. WRKSRC= ${WRKDIST}/gdb/gdbserver
  11. $(eval $(call PKG_template,GDBSERVER,gdbserver,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  12. post-install:
  13. ${INSTALL_DIR} ${IDIR_GDBSERVER}/usr/bin
  14. ${INSTALL_BIN} ${WRKINST}/usr/bin/gdbserver ${IDIR_GDBSERVER}/usr/bin/
  15. include ${TOPDIR}/mk/pkg-bottom.mk