Makefile revision 146607
190792Sgshapiro#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2261363Sgshapiro# $FreeBSD: head/sbin/Makefile 146607 2005-05-25 07:31:05Z ru $
390792Sgshapiro
490792Sgshapiro# XXX MISSING:		icheck ncheck
590792Sgshapiro
690792SgshapiroSUBDIR=	adjkerntz \
790792Sgshapiro	atacontrol \
890792Sgshapiro	${_atm} \
990792Sgshapiro	badsect \
1090792Sgshapiro	bsdlabel \
1190792Sgshapiro	camcontrol \
1290792Sgshapiro	ccdconfig \
1390792Sgshapiro	clri \
1490792Sgshapiro	comcontrol \
1590792Sgshapiro	conscontrol \
16266692Sgshapiro	${_devd} \
1790792Sgshapiro	devfs \
1890792Sgshapiro	dhclient \
1990792Sgshapiro	dmesg \
2090792Sgshapiro	dump \
2190792Sgshapiro	dumpfs \
2290792Sgshapiro	dumpon \
2390792Sgshapiro	${_fdisk} \
2490792Sgshapiro	${_fdisk_pc98} \
2590792Sgshapiro	ffsinfo \
2690792Sgshapiro	fsck \
2790792Sgshapiro	fsck_ffs \
2890792Sgshapiro	fsck_msdosfs \
2990792Sgshapiro	fsdb \
3090792Sgshapiro	fsirand \
3190792Sgshapiro	gbde \
3290792Sgshapiro	geom \
3390792Sgshapiro	ggate \
3490792Sgshapiro	gpt \
3590792Sgshapiro	growfs \
3690792Sgshapiro	gvinum \
3790792Sgshapiro	ifconfig \
3890792Sgshapiro	init \
3990792Sgshapiro	${_ip6fw} \
4090792Sgshapiro	${_ipf} \
4190792Sgshapiro	ipfw \
42	kldconfig \
43	kldload \
44	kldstat \
45	kldunload \
46	ldconfig \
47	${_mca} \
48	md5 \
49	mdconfig \
50	mdmfs \
51	mknod \
52	mksnap_ffs \
53	mount \
54	mount_cd9660 \
55	mount_ext2fs \
56	mount_msdosfs \
57	mount_nfs \
58	mount_nfs4 \
59	mount_ntfs \
60	mount_nullfs \
61	${_mount_reiserfs} \
62	mount_std \
63	mount_udf \
64	mount_umapfs \
65	mount_unionfs \
66	natd \
67	newfs \
68	newfs_msdos \
69	nfsiod \
70	nos-tun \
71	${_pfctl} \
72	${_pflogd} \
73	ping \
74	${_ping6} \
75	quotacheck \
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
94.if !defined(NO_ATM)
95_atm=		atm
96.endif
97
98.if !defined(NO_CXX)
99_devd=		devd
100.endif
101
102.if !defined(NO_IPFILTER)
103_ipf=		ipf
104.endif
105
106.if !defined(NO_PF)
107_pfctl=		pfctl
108_pflogd=	pflogd
109.endif
110
111.if !defined(NO_INET6)
112_ip6fw=		ip6fw
113_ping6=		ping6
114.endif
115
116.if ${MACHINE_ARCH} == "i386"
117.if ${MACHINE} == "i386"
118_fdisk=		fdisk
119.elif ${MACHINE} == "pc98"
120_fdisk_pc98=	fdisk_pc98
121.endif
122_mount_reiserfs= mount_reiserfs
123_sconfig=	sconfig
124.endif
125
126.if ${MACHINE_ARCH} == "amd64"
127_fdisk=		fdisk
128.endif
129
130.if ${MACHINE_ARCH} == "ia64"
131_fdisk=		fdisk
132_mca=		mca
133.endif
134
135.include <bsd.subdir.mk>
136