Makefile revision 158500
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 158500 2006-05-12 20:39:23Z mlaier $
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_reiserfs \
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	rcorder \
78	reboot \
79	restore \
80	route \
81	routed \
82	rtsol \
83	savecore \
84	${_sconfig} \
85	setkey \
86	shutdown \
87	slattach \
88	spppcontrol \
89	startslip \
90	sunlabel \
91	swapon \
92	sysctl \
93	tunefs \
94	umount \
95
96.if ${MK_ATM} != "no"
97_atm=		atm
98.endif
99
100.if ${MK_CXX} != "no"
101_devd=		devd
102.endif
103
104.if ${MK_IPFILTER} != "no"
105_ipf=		ipf
106.endif
107
108.if ${MK_PF} != "no"
109_pfctl=		pfctl
110_pflogd=	pflogd
111.endif
112
113.if ${MK_INET6} != "no"
114_ping6=		ping6
115.endif
116
117.if ${MACHINE_ARCH} == "i386"
118.if ${MACHINE} == "i386"
119_fdisk=		fdisk
120.elif ${MACHINE} == "pc98"
121_fdisk_pc98=	fdisk_pc98
122.endif
123_sconfig=	sconfig
124.endif
125
126.if ${MACHINE_ARCH} == "amd64"
127_fdisk=		fdisk
128.endif
129
130.if ${MACHINE_ARCH} == "arm"
131_fdisk=		fdisk
132.endif
133
134.if ${MACHINE_ARCH} == "ia64"
135_fdisk=		fdisk
136_mca=		mca
137.endif
138
139.include <bsd.subdir.mk>
140