| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include ${ADK_TOPDIR}/rules.mkinclude ${ADK_TOPDIR}/toolchain/gdb/Makefile.incPKG_NAME:=		gdbPKG_DESCR:=		programm debuggerPKG_SECTION:=		app/debugPKG_DEPENDS:=		libncurses zlib libexpatPKG_BUILDDEP:=		ncurses readline expat zlibPKG_NOPARALLEL:=	1PKG_ARCH_DEPENDS:=	!m68k !avr32include ${ADK_TOPDIR}/mk/package.mk$(eval $(call PKG_template,GDB,gdb,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))TARGET_CFLAGS+=		${TARGET_CPPFLAGS} -fPICCONFIGURE_ARGS+=	--without-uiout \			--disable-tui \			--disable-gdbtk \			--disable-gdbserver \			--without-x \			--disable-sim \			--disable-werror \			--without-python \			--without-included-gettext \			--without-auto-load-safe-path \			--disable-install-libiberty \			--disable-install-libbfd \			--with-curses \			--enable-gdbmiXAKE_FLAGS+=		LDFLAGS='${TARGET_LDFLAGS}'# disable honour cflags stuffXAKE_FLAGS+=		GCC_HONOUR_COPTS:=sgdb-install:	${INSTALL_DIR} ${IDIR_GDB}/usr/bin	${INSTALL_BIN} ${WRKINST}/usr/bin/gdb ${IDIR_GDB}/usr/bin/	# shipped libbfd conflicts with system wide one	rm -f ${WRKINST}/usr/lib/libbfd*include ${ADK_TOPDIR}/mk/pkg-bottom.mk
 |