Makefile revision 192578
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 192578 2009-05-22 12:35:12Z rwatson $
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	ifconfig \
40	init \
41	${_ipf} \
42	${_ipfw} \
43	iscontrol \
44	kldconfig \
45	kldload \
46	kldstat \
47	kldunload \
48	ldconfig \
49	${_mca} \
50	md5 \
51	mdconfig \
52	mdmfs \
53	mknod \
54	mksnap_ffs \
55	mount \
56	mount_cd9660 \
57	mount_msdosfs \
58	mount_nfs \
59	mount_ntfs \
60	mount_nullfs \
61	mount_udf \
62	mount_unionfs \
63	${_natd} \
64	newfs \
65	newfs_msdos \
66	nfsiod \
67	nos-tun \
68	${_pfctl} \
69	${_pflogd} \
70	ping \
71	${_ping6} \
72	${_quotacheck} \
73	rcorder \
74	reboot \
75	recoverdisk \
76	restore \
77	route \
78	${_routed} \
79	${_rtsol} \
80	savecore \
81	${_sconfig} \
82	setkey \
83	shutdown \
84	spppcontrol \
85	${_sunlabel} \
86	swapon \
87	sysctl \
88	tunefs \
89	umount \
90
91.if ${MK_ATM} != "no"
92_atm=		atm
93.endif
94
95.if ${MK_CXX} != "no"
96_devd=		devd
97.endif
98
99.if ${MK_IPFILTER} != "no"
100_ipf=		ipf
101.endif
102
103.if ${MK_IPFW} != "no"
104_ipfw=		ipfw
105_natd=		natd
106.endif
107
108.if ${MK_PF} != "no"
109_pfctl=		pfctl
110_pflogd=	pflogd
111.endif
112
113.if ${MK_INET6} != "no"
114_ping6=		ping6
115_rtsol=		rtsol
116.endif
117
118.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc"
119_bsdlabel=	bsdlabel
120.endif
121
122.if ${MK_QUOTAS} != "no"
123_quotacheck=	quotacheck
124.endif
125
126.if ${MK_ROUTED} != "no"
127_routed=	routed
128.endif
129
130.if ${MACHINE_ARCH} == "i386"
131.if ${MACHINE} == "i386"
132_fdisk=		fdisk
133.elif ${MACHINE} == "pc98"
134_fdisk_pc98=	fdisk_pc98
135.endif
136_sconfig=	sconfig
137.endif
138
139.if ${MACHINE_ARCH} == "amd64"
140_fdisk=		fdisk
141.endif
142
143.if ${MACHINE_ARCH} == "arm"
144_fdisk=		fdisk
145.endif
146
147.if ${MACHINE_ARCH} == "ia64"
148_mca=		mca
149.endif
150
151.if ${MACHINE_ARCH} == "sparc64"
152_sunlabel=	sunlabel
153.endif
154
155.include <bsd.subdir.mk>
156