Makefile revision 204076
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 204076 2010-02-18 23:16:19Z pjd $
3
4.include <bsd.own.mk>
5
6# XXX MISSING:		icheck ncheck
7
8SUBDIR=	adjkerntz \
9	atacontrol \
10	${_atm} \
11	badsect \
12	${_bsdlabel} \
13	camcontrol \
14	ccdconfig \
15	clri \
16	comcontrol \
17	conscontrol \
18	ddb \
19	${_devd} \
20	devfs \
21	dhclient \
22	dmesg \
23	dump \
24	dumpfs \
25	dumpon \
26	${_fdisk} \
27	${_fdisk_pc98} \
28	ffsinfo \
29	fsck \
30	fsck_ffs \
31	fsck_msdosfs \
32	fsdb \
33	fsirand \
34	gbde \
35	geom \
36	ggate \
37	growfs \
38	gvinum \
39	hastctl \
40	hastd \
41	ifconfig \
42	init \
43	${_ipf} \
44	${_ipfw} \
45	iscontrol \
46	kldconfig \
47	kldload \
48	kldstat \
49	kldunload \
50	ldconfig \
51	${_mca} \
52	md5 \
53	mdconfig \
54	mdmfs \
55	mknod \
56	mksnap_ffs \
57	mount \
58	mount_cd9660 \
59	mount_msdosfs \
60	mount_nfs \
61	mount_ntfs \
62	mount_nullfs \
63	mount_udf \
64	mount_unionfs \
65	${_natd} \
66	newfs \
67	newfs_msdos \
68	nfsiod \
69	nos-tun \
70	${_pfctl} \
71	${_pflogd} \
72	ping \
73	${_ping6} \
74	${_quotacheck} \
75	rcorder \
76	reboot \
77	recoverdisk \
78	restore \
79	route \
80	${_routed} \
81	${_rtsol} \
82	savecore \
83	${_sconfig} \
84	setkey \
85	shutdown \
86	spppcontrol \
87	${_sunlabel} \
88	swapon \
89	sysctl \
90	tunefs \
91	umount \
92
93.if ${MK_ATM} != "no"
94_atm=		atm
95.endif
96
97.if ${MK_CXX} != "no"
98_devd=		devd
99.endif
100
101.if ${MK_IPFILTER} != "no"
102_ipf=		ipf
103.endif
104
105.if ${MK_IPFW} != "no"
106_ipfw=		ipfw
107_natd=		natd
108.endif
109
110.if ${MK_PF} != "no"
111_pfctl=		pfctl
112_pflogd=	pflogd
113.endif
114
115.if ${MK_INET6} != "no"
116_ping6=		ping6
117_rtsol=		rtsol
118.endif
119
120.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc"
121_bsdlabel=	bsdlabel
122.endif
123
124.if ${MK_QUOTAS} != "no"
125_quotacheck=	quotacheck
126.endif
127
128.if ${MK_ROUTED} != "no"
129_routed=	routed
130.endif
131
132.if ${MACHINE_ARCH} == "i386"
133.if ${MACHINE} == "i386"
134_fdisk=		fdisk
135.elif ${MACHINE} == "pc98"
136_fdisk_pc98=	fdisk_pc98
137.endif
138_sconfig=	sconfig
139.endif
140
141.if ${MACHINE_ARCH} == "amd64"
142_fdisk=		fdisk
143.endif
144
145.if ${MACHINE_ARCH} == "arm"
146_fdisk=		fdisk
147.endif
148
149.if ${MACHINE_ARCH} == "ia64"
150_mca=		mca
151.endif
152
153.if ${MACHINE_ARCH} == "sparc64"
154_sunlabel=	sunlabel
155.endif
156
157.include <bsd.subdir.mk>
158