Makefile 961 B

12345678910111213141516171819202122232425262728293031
  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
  6. PKG_SECTION:= comp
  7. PKG_DEPENDS:= libthread-db libncurses
  8. PKG_BUILDDEP+= ncurses readline
  9. include ${TOPDIR}/mk/package.mk
  10. $(eval $(call PKG_template,GDB,gdb,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  11. TCFLAGS+= ${TCPPFLAGS} -fPIC
  12. CONFIGURE_STYLE= gnu
  13. CONFIGURE_ARGS+= --without-uiout --enable-gdbmi \
  14. --disable-tui --disable-gdbtk --without-x \
  15. --without-included-gettext --disable-sim \
  16. --enable-threads --with-curses --disable-werror \
  17. --enable-static
  18. BUILD_STYLE= auto
  19. INSTALL_STYLE= auto
  20. XAKE_FLAGS+= LDFLAGS='${TLDFLAGS}'
  21. post-install:
  22. ${INSTALL_DIR} ${IDIR_GDB}/usr/bin
  23. ${INSTALL_BIN} ${WRKINST}/usr/bin/gdb ${IDIR_GDB}/usr/bin/
  24. include ${TOPDIR}/mk/pkg-bottom.mk