Makefile revision 147070
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 147070 2005-06-07 03:59:26Z brooks $
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	dmesg \
19	dump \
20	dumpfs \
21	dumpon \
22	${_fdisk} \
23	${_fdisk_pc98} \
24	ffsinfo \
25	fsck \
26	fsck_ffs \
27	fsck_msdosfs \
28	fsdb \
29	fsirand \
30	gbde \
31	geom \
32	ggate \
33	gpt \
34	growfs \
35	gvinum \
36	ifconfig \
37	init \
38	${_ip6fw} \
39	${_ipf} \
40	ipfw \
41	kldconfig \
42	kldload \
43	kldstat \
44	kldunload \
45	ldconfig \
46	${_mca} \
47	md5 \
48	mdconfig \
49	mdmfs \
50	mknod \
51	mksnap_ffs \
52	mount \
53	mount_cd9660 \
54	mount_ext2fs \
55	mount_msdosfs \
56	mount_nfs \
57	mount_nfs4 \
58	mount_ntfs \
59	mount_nullfs \
60	${_mount_reiserfs} \
61	mount_std \
62	mount_udf \
63	mount_umapfs \
64	mount_unionfs \
65	natd \
66	newfs \
67	newfs_msdos \
68	nfsiod \
69	nos-tun \
70	${_pfctl} \
71	${_pflogd} \
72	ping \
73	${_ping6} \
74	quotacheck \
75	rcorder \
76	reboot \
77	restore \
78	route \
79	routed \
80	rtsol \
81	savecore \
82	${_sconfig} \
83	shutdown \
84	slattach \
85	spppcontrol \
86	startslip \
87	sunlabel \
88	swapon \
89	sysctl \
90	tunefs \
91	umount \
92
93.if !defined(NO_ATM)
94_atm=		atm
95.endif
96
97.if !defined(NO_CXX)
98_devd=		devd
99.endif
100
101.if !defined(NO_IPFILTER)
102_ipf=		ipf
103.endif
104
105.if !defined(NO_PF)
106_pfctl=		pfctl
107_pflogd=	pflogd
108.endif
109
110.if !defined(NO_INET6)
111_ip6fw=		ip6fw
112_ping6=		ping6
113.endif
114
115.if ${MACHINE_ARCH} == "i386"
116.if ${MACHINE} == "i386"
117_fdisk=		fdisk
118.elif ${MACHINE} == "pc98"
119_fdisk_pc98=	fdisk_pc98
120.endif
121_mount_reiserfs= mount_reiserfs
122_sconfig=	sconfig
123.endif
124
125.if ${MACHINE_ARCH} == "amd64"
126_fdisk=		fdisk
127.endif
128
129.if ${MACHINE_ARCH} == "ia64"
130_fdisk=		fdisk
131_mca=		mca
132.endif
133
134.include <bsd.subdir.mk>
135