Makefile revision 158666
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 158666 2006-05-16 22:12:55Z rodrigc $
3
4.include <bsd.own.mk>
5
6# XXX MISSING:		icheck ncheck
7
8SUBDIR=	adjkerntz \
9	atacontrol \
10	${_atm} \
11	badsect \
12	bsdlabel \
13	camcontrol \
14	ccdconfig \
15	clri \
16	comcontrol \
17	conscontrol \
18	${_devd} \
19	devfs \
20	dhclient \
21	dmesg \
22	dump \
23	dumpfs \
24	dumpon \
25	${_fdisk} \
26	${_fdisk_pc98} \
27	ffsinfo \
28	fsck \
29	fsck_ffs \
30	fsck_msdosfs \
31	fsdb \
32	fsirand \
33	gbde \
34	geom \
35	ggate \
36	gpt \
37	growfs \
38	gvinum \
39	ifconfig \
40	init \
41	${_ipf} \
42	ipfw \
43	kldconfig \
44	kldload \
45	kldstat \
46	kldunload \
47	ldconfig \
48	${_mca} \
49	md5 \
50	mdconfig \
51	mdmfs \
52	mknod \
53	mksnap_ffs \
54	mount \
55	mount_cd9660 \
56	mount_ext2fs \
57	mount_msdosfs \
58	mount_nfs \
59	mount_nfs4 \
60	mount_ntfs \
61	mount_nullfs \
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	setkey \
85	shutdown \
86	slattach \
87	spppcontrol \
88	startslip \
89	sunlabel \
90	swapon \
91	sysctl \
92	tunefs \
93	umount \
94
95.if ${MK_ATM} != "no"
96_atm=		atm
97.endif
98
99.if ${MK_CXX} != "no"
100_devd=		devd
101.endif
102
103.if ${MK_IPFILTER} != "no"
104_ipf=		ipf
105.endif
106
107.if ${MK_PF} != "no"
108_pfctl=		pfctl
109_pflogd=	pflogd
110.endif
111
112.if ${MK_INET6} != "no"
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_sconfig=	sconfig
123.endif
124
125.if ${MACHINE_ARCH} == "amd64"
126_fdisk=		fdisk
127.endif
128
129.if ${MACHINE_ARCH} == "arm"
130_fdisk=		fdisk
131.endif
132
133.if ${MACHINE_ARCH} == "ia64"
134_fdisk=		fdisk
135_mca=		mca
136.endif
137
138.include <bsd.subdir.mk>
139