21 lines
453 B
Makefile
21 lines
453 B
Makefile
# $NetBSD: gdbinit.mk,v 1.1 2015/08/29 16:27:07 uebayasi Exp $
|
|
|
|
##
|
|
## .gdbinit
|
|
##
|
|
|
|
.include "${S}/gdbscripts/Makefile.inc"
|
|
|
|
EXTRA_CLEAN+= .gdbinit
|
|
.gdbinit: Makefile ${S}/gdbscripts/Makefile.inc
|
|
${_MKTARGET_CREATE}
|
|
rm -f .gdbinit
|
|
.for __gdbinit in ${SYS_GDBINIT}
|
|
echo "source ${S}/gdbscripts/${__gdbinit}" >> .gdbinit
|
|
.endfor
|
|
.if defined(GDBINIT) && !empty(GDBINIT)
|
|
.for __gdbinit in ${GDBINIT}
|
|
echo "source ${__gdbinit}" >> .gdbinit
|
|
.endfor
|
|
.endif
|