Makefile revision 126917
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 126917 2004-03-13 11:02:37Z cperciva $
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	gconcat \
33	${_gpt} \
34	growfs \
35	ifconfig \
36	init \
37	${_ip6fw} \
38	${_ipf} \
39	${_ipfs} \
40	${_ipfstat} \
41	ipfw \
42	${_ipmon} \
43	${_ipnat} \
44	kldconfig \
45	kldload \
46	kldstat \
47	kldunload \
48	ldconfig \
49	${_mca} \
50	md5 \
51	mdconfig \
52	mdmfs \
53	mknod \
54	mksnap_ffs \
55	mount \
56	mount_cd9660 \
57	mount_ext2fs \
58	mount_msdosfs \
59	mount_nfs \
60	mount_nfs4 \
61	mount_ntfs \
62	mount_nullfs \
63	mount_std \
64	mount_udf \
65	mount_umapfs \
66	mount_unionfs \
67	natd \
68	newfs \
69	newfs_msdos \
70	nfsiod \
71	nos-tun \
72	${_pfctl} \
73	${_pflogd} \
74	ping \
75	${_ping6} \
76	quotacheck \
77	raidctl \
78	rcorder \
79	reboot \
80	restore \
81	route \
82	routed \
83	rtsol \
84	savecore \
85	${_sconfig} \
86	shutdown \
87	slattach \
88	spppcontrol \
89	startslip \
90	sunlabel \
91	swapon \
92	sysctl \
93	tunefs \
94	umount \
95	${_vinum}
96
97.if !defined(NOATM)
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(NOINET6)
119_ip6fw=		ip6fw
120_ping6=		ping6
121.endif
122
123.if !defined(NO_VINUM)
124_vinum=		vinum
125.endif
126
127.if ${MACHINE_ARCH} == "i386"
128.if ${MACHINE} == "i386"
129_fdisk=		fdisk
130.elif ${MACHINE} == "pc98"
131_fdisk_pc98=	fdisk_pc98
132.endif
133_sconfig=	sconfig
134.endif
135
136.if ${MACHINE_ARCH} == "amd64"
137_fdisk=		fdisk
138_gpt=		gpt
139.endif
140
141.if ${MACHINE_ARCH} == "ia64"
142_fdisk=		fdisk
143_gpt=		gpt
144_mca=		mca
145.endif
146
147.include <bsd.subdir.mk>
148