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