Makefile revision 105574
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 105574 2002-10-20 22:16:52Z imp $
3
4# XXX MISSING:		icheck ncheck
5
6SUBDIR=	adjkerntz \
7	atacontrol \
8	atm \
9	badsect \
10	camcontrol \
11	ccdconfig \
12	clri \
13	comcontrol \
14	conscontrol \
15	devd \
16	devfs \
17	dhclient \
18	disklabel \
19	dmesg \
20	dump \
21	dumpfs \
22	dumpon \
23	fsck \
24	fsck_ffs \
25	fsck_msdosfs \
26	fsdb \
27	fsirand \
28	gbde \
29	growfs \
30	ifconfig \
31	init \
32	ip6fw \
33	ipfw \
34	kldconfig \
35	kldload \
36	kldstat \
37	kldunload \
38	ldconfig \
39	md5 \
40	mdconfig \
41	mdmfs \
42	mknod \
43	mount \
44	mount_cd9660 \
45	mount_ext2fs \
46	mount_msdosfs \
47	mount_nfs \
48	mount_ntfs \
49	mount_nullfs \
50	mount_portalfs \
51	mount_std \
52	mount_udf \
53	mount_umapfs \
54	mount_unionfs \
55	natd \
56	newfs \
57	newfs_msdos \
58	nfsiod \
59	nologin \
60	nos-tun \
61	ping \
62	ping6 \
63	quotacheck \
64	rcorder \
65	reboot \
66	restore \
67	route \
68	routed \
69	rtsol \
70	savecore \
71	shutdown \
72	slattach \
73	spppcontrol \
74	startslip \
75	swapon \
76	sysctl \
77	tunefs \
78	umount \
79	vinum
80
81.if !defined(NO_IPFILTER)
82SUBDIR+=ipf \
83	ipfs \
84	ipfstat \
85	ipmon \
86	ipnat
87.endif
88
89.if ${MACHINE_ARCH} == "i386"
90SUBDIR+=cxconfig \
91	mount_nwfs \
92	mount_smbfs
93.if ${MACHINE} == "pc98"
94SUBDIR+=fdisk_pc98
95.else
96SUBDIR+=fdisk
97.endif
98.endif
99
100.if ${MACHINE_ARCH} == "ia64"
101SUBDIR+=fdisk \
102	gpt \
103	mca
104.endif
105
106.include <bsd.subdir.mk>
107