xref: /netbsd-src/external/gpl3/gdb/bin/Makefile (revision 84a33e074d8f73a05520958cf31e4f1481639373)
1#	$NetBSD: Makefile,v 1.7 2024/08/27 21:50:00 christos 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
20#SUBDIR+= psim
21#.endif
22
23.include <bsd.subdir.mk>
24