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