blob: 6f7523df476e73a3699ef4d8e7d3f4fb48f18313 (
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.19 2010/03/10 23:13:10 abs Exp $
.if make(obj)
SUBDIR= libhack more ssh tls \
x_dhclient 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>
|