blob: c3134e16c727700f104e4b00b36f6e41870acbfc (
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.2 2006/05/29 19:15:30 nathanw Exp $
.include "Makefile.inc"
SUBDIR= bfd libiberty opcodes libgdb
.if ${USE_LIBEDIT} == no || ${USE_TUI} == yes
SUBDIR+= readline
.endif
SUBDIR+= .WAIT
SUBDIR+= sim
SUBDIR+= gdb
.if ${USE_TUI} == yes
SUBDIR+= gdbtui
.endif
#SUBDIR+= gdbserver
.include <bsd.subdir.mk>
|