xref: /netbsd-src/external/gpl3/gdb.old/bin/Makefile (revision 4b457b0eb1d0e0a1406c7a9996eebaf8c51fe58e)
1#	$NetBSD: Makefile,v 1.11 2024/08/18 04:00:42 rin Exp $
2
3.include <bsd.own.mk>
4
5.include "../Makefile.inc"
6
7#SUBDIR+= sim .WAIT
8
9SUBDIR+=  gdb
10.if ${USE_TUI} == yes
11SUBDIR+= gdbtui
12.endif
13
14.if ${MKGDBSERVER} != "no"
15SUBDIR+= gdbserver
16.endif
17
18.if ${MACHINE_ARCH} == powerpc || ${MACHINE_ARCH} == powerpcle || \
19    ${MACHINE_ARCH} == powerpc64
20SUBDIR+= psim
21.endif
22
23.include <bsd.subdir.mk>
24