blob: de72c558e6b4c7fa1be32162141c647ca13da68a (
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
|
# $NetBSD: Makefile,v 1.20 2013/03/24 20:26:29 christos Exp $
.if make(obj)
SUBDIR= libhack more ssh tls \
x_ed x_gzip x_ifconfig \
x_netstat x_ping x_route x_umount zcat
.if ${MACHINE} == "acorn32"
SUBDIR+=sparkcrc
.endif
.if ${MACHINE_ARCH} == "m68000" || ${MACHINE_ARCH} == "m68k"
SUBDIR+=edlabel
.endif
# IPv6
SUBDIR+=x_ping6
.endif
.if exists(sysinst/arch/${MACHINE})
SUBDIR+=sysinst
.endif
release:
.include <bsd.subdir.mk>
|