blob: 541be4af3e127063c3a99418dd733fbba7b7bfea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.9 2023/03/21 16:54:43 christos Exp $
.include "../Makefile.inc"
#SUBDIR+= sim .WAIT
SUBDIR+= gdb
.if ${USE_TUI} == yes
SUBDIR+= gdbtui
.endif
.if ${MACHINE} == "amd64"
SUBDIR+= gdbserver
.endif
.if ${MACHINE_ARCH} == powerpc || ${MACHINE_ARCH} == powerpcle || \
${MACHINE_ARCH} == powerpc64
SUBDIR+= psim
.endif
.include <bsd.subdir.mk>
|