blob: 6b870a9cc7b079193fbbf136cc342426f1e27956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $NetBSD: Makefile,v 1.95 2000/07/04 17:12:00 thorpej Exp $
# for OBJECT_FMT
.include <bsd.own.mk>
SUBDIR+= bc binutils dc diff diff3 egcs gas.new gawk grep gprof
SUBDIR+= groff gzip ld.new rcs sdiff send-pr sort texinfo
SUBDIR+= cpio
SUBDIR+= tar
.if (${MACHINE_ARCH} != "sparc64")
SUBDIR+= gdb
.endif
.if (${MACHINE_ARCH} == "m68k" && ${OBJECT_FMT} != "ELF") || \
(${MACHINE_ARCH} == "ns32k")
SUBDIR+= gas
.endif
.if (${OBJECT_FMT} != "ELF") && \
((${MACHINE_ARCH} == "arm32") || \
(${MACHINE_ARCH} == "i386") || \
(${MACHINE_ARCH} == "m68k") || \
(${MACHINE_ARCH} == "ns32k") || \
(${MACHINE_ARCH} == "sparc") || \
(${MACHINE_ARCH} == "vax"))
SUBDIR+= ld
.endif
.include <bsd.subdir.mk>
|