Makefile revision 135093
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 135093 2004-09-12 01:25:47Z alfred $
3
4# XXX MISSING:		icheck ncheck
5
6SUBDIR=	adjkerntz \
7	atacontrol \
8	${_atm} \
9	badsect \
10	bsdlabel \
11	camcontrol \
12	ccdconfig \
13	clri \
14	comcontrol \
15	conscontrol \
16	${_devd} \
17	devfs \
18	dhclient \
19	dmesg \
20	dump \
21	dumpfs \
22	dumpon \
23	${_fdisk} \
24	${_fdisk_pc98} \
25	ffsinfo \
26	fsck \
27	fsck_ffs \
28	fsck_msdosfs \
29	fsdb \
30	fsirand \
31	gbde \
32	geom \
33	ggate \
34	${_gpt} \
35	growfs \
36	gvinum \
37	ifconfig \
38	init \
39	${_ip6fw} \
40	${_ipf} \
41	${_ipfs} \
42	${_ipfstat} \
43	ipfw \
44	${_ipmon} \
45	${_ipnat} \
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_autofs \
59	mount_cd9660 \
60	mount_ext2fs \
61	mount_msdosfs \
62	mount_nfs \
63	mount_nfs4 \
64	mount_ntfs \
65	mount_nullfs \
66	mount_std \
67	mount_udf \
68	mount_umapfs \
69	mount_unionfs \
70	natd \
71	newfs \
72	newfs_msdos \
73	nfsiod \
74	nos-tun \
75	${_pfctl} \
76	${_pflogd} \
77	ping \
78	${_ping6} \
79	quotacheck \
80	rcorder \
81	reboot \
82	restore \
83	route \
84	routed \
85	rtsol \
86	savecore \
87	${_sconfig} \
88	shutdown \
89	slattach \
90	spppcontrol \
91	startslip \
92	sunlabel \
93	swapon \
94	sysctl \
95	tunefs \
96	umount \
97	${_vinum}
98
99.if !defined(NOATM)
100_atm=		atm
101.endif
102
103.if !defined(NO_CXX)
104_devd=		devd
105.endif
106
107.if !defined(NO_IPFILTER)
108_ipf=		ipf
109_ipfs=		ipfs
110_ipfstat=	ipfstat
111_ipmon=		ipmon
112_ipnat=		ipnat
113.endif
114
115.if !defined(NO_PF)
116_pfctl=		pfctl
117_pflogd=	pflogd
118.endif
119
120.if !defined(NOINET6)
121_ip6fw=		ip6fw
122_ping6=		ping6
123.endif
124
125.if !defined(NO_VINUM)
126_vinum=		vinum
127.endif
128
129.if ${MACHINE_ARCH} == "i386"
130.if ${MACHINE} == "i386"
131_fdisk=		fdisk
132.elif ${MACHINE} == "pc98"
133_fdisk_pc98=	fdisk_pc98
134.endif
135_sconfig=	sconfig
136.endif
137
138.if ${MACHINE_ARCH} == "amd64"
139_fdisk=		fdisk
140.endif
141
142.if ${MACHINE_ARCH} == "ia64"
143_fdisk=		fdisk
144_mca=		mca
145.endif
146
147.if ${MACHINE_ARCH} != "sparc64"
148_gpt=		gpt
149.endif
150
151.include <bsd.subdir.mk>
152