Makefile revision 126756
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 126756 2004-03-08 22:03:29Z mlaier $
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	gconcat \
33	${_gpt} \
34	growfs \
35	ifconfig \
36	init \
37	${_ip6fw} \
38	${_ipf} \
39	${_ipfs} \
40	${_ipfstat} \
41	ipfw \
42	${_ipmon} \
43	${_ipnat} \
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_ext2fs \
58	mount_msdosfs \
59	mount_nfs \
60	mount_nfs4 \
61	mount_ntfs \
62	mount_nullfs \
63	mount_std \
64	mount_udf \
65	mount_umapfs \
66	mount_unionfs \
67	natd \
68	newfs \
69	newfs_msdos \
70	nfsiod \
71	nologin \
72	nos-tun \
73	${_pfctl} \
74	${_pflogd} \
75	ping \
76	${_ping6} \
77	quotacheck \
78	raidctl \
79	rcorder \
80	reboot \
81	restore \
82	route \
83	routed \
84	rtsol \
85	savecore \
86	${_sconfig} \
87	shutdown \
88	slattach \
89	spppcontrol \
90	startslip \
91	sunlabel \
92	swapon \
93	sysctl \
94	tunefs \
95	umount \
96	${_vinum}
97
98.if !defined(NOATM)
99_atm=		atm
100.endif
101
102.if !defined(NO_CXX)
103_devd=		devd
104.endif
105
106.if !defined(NO_IPFILTER)
107_ipf=		ipf
108_ipfs=		ipfs
109_ipfstat=	ipfstat
110_ipmon=		ipmon
111_ipnat=		ipnat
112.endif
113
114.if !defined(NO_PF)
115_pfctl=		pfctl
116_pflogd=	pflogd
117.endif
118
119.if !defined(NOINET6)
120_ip6fw=		ip6fw
121_ping6=		ping6
122.endif
123
124.if !defined(NO_VINUM)
125_vinum=		vinum
126.endif
127
128.if ${MACHINE_ARCH} == "i386"
129.if ${MACHINE} == "i386"
130_fdisk=		fdisk
131.elif ${MACHINE} == "pc98"
132_fdisk_pc98=	fdisk_pc98
133.endif
134_sconfig=	sconfig
135.endif
136
137.if ${MACHINE_ARCH} == "amd64"
138_fdisk=		fdisk
139_gpt=		gpt
140.endif
141
142.if ${MACHINE_ARCH} == "ia64"
143_fdisk=		fdisk
144_gpt=		gpt
145_mca=		mca
146.endif
147
148.include <bsd.subdir.mk>
149