Makefile revision 139115
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 139115 2004-12-21 10:49:29Z 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	geom \
33	ggate \
34	gpt \
35	growfs \
36	gvinum \
37	ifconfig \
38	init \
39	${_ip6fw} \
40	${_ipf} \
41	${_ipfs} \
42	${_ipfstat} \
43	ipfw \
44	${_ipmon} \
45	${_ipnat} \
46	kldconfig \
47	kldload \
48	kldstat \
49	kldunload \
50	ldconfig \
51	${_mca} \
52	md5 \
53	mdconfig \
54	mdmfs \
55	mknod \
56	mksnap_ffs \
57	mount \
58	mount_cd9660 \
59	mount_ext2fs \
60	mount_msdosfs \
61	mount_nfs \
62	mount_nfs4 \
63	mount_ntfs \
64	mount_nullfs \
65	mount_std \
66	mount_udf \
67	mount_umapfs \
68	mount_unionfs \
69	natd \
70	newfs \
71	newfs_msdos \
72	nfsiod \
73	nos-tun \
74	${_pfctl} \
75	${_pflogd} \
76	ping \
77	${_ping6} \
78	quotacheck \
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
97.if !defined(NO_ATM)
98_atm=		atm
99.endif
100
101.if !defined(NO_CXX)
102_devd=		devd
103.endif
104
105.if !defined(NO_IPFILTER)
106_ipf=		ipf
107_ipfs=		ipfs
108_ipfstat=	ipfstat
109_ipmon=		ipmon
110_ipnat=		ipnat
111.endif
112
113.if !defined(NO_PF)
114_pfctl=		pfctl
115_pflogd=	pflogd
116.endif
117
118.if !defined(NO_INET6)
119_ip6fw=		ip6fw
120_ping6=		ping6
121.endif
122
123.if ${MACHINE_ARCH} == "i386"
124.if ${MACHINE} == "i386"
125_fdisk=		fdisk
126.elif ${MACHINE} == "pc98"
127_fdisk_pc98=	fdisk_pc98
128.endif
129_sconfig=	sconfig
130.endif
131
132.if ${MACHINE_ARCH} == "amd64"
133_fdisk=		fdisk
134.endif
135
136.if ${MACHINE_ARCH} == "ia64"
137_fdisk=		fdisk
138_mca=		mca
139.endif
140
141.include <bsd.subdir.mk>
142