Makefile revision 137200
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 137200 2004-11-04 12:46:46Z phk $
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_autofs \
59	mount_cd9660 \
60	mount_ext2fs \
61	mount_msdosfs \
62	mount_nfs \
63	mount_nfs4 \
64	mount_ntfs \
65	mount_nullfs \
66	mount_std \
67	mount_udf \
68	mount_umapfs \
69	mount_unionfs \
70	natd \
71	newfs \
72	newfs_msdos \
73	nfsiod \
74	nos-tun \
75	${_pfctl} \
76	${_pflogd} \
77	ping \
78	${_ping6} \
79	quotacheck \
80	rcorder \
81	reboot \
82	restore \
83	route \
84	routed \
85	rtsol \
86	savecore \
87	${_sconfig} \
88	shutdown \
89	slattach \
90	spppcontrol \
91	startslip \
92	sunlabel \
93	swapon \
94	sysctl \
95	tunefs \
96	umount \
97
98.if !defined(NOATM)
99_atm=		atm
100.endif
101
102.if !defined(NO_CXX)
103_devd=		devd
104.endif
105
106.if !defined(NO_IPFILTER)
107_ipf=		ipf
108_ipfs=		ipfs
109_ipfstat=	ipfstat
110_ipmon=		ipmon
111_ipnat=		ipnat
112.endif
113
114.if !defined(NO_PF)
115_pfctl=		pfctl
116_pflogd=	pflogd
117.endif
118
119.if !defined(NOINET6)
120_ip6fw=		ip6fw
121_ping6=		ping6
122.endif
123
124.if ${MACHINE_ARCH} == "i386"
125.if ${MACHINE} == "i386"
126_fdisk=		fdisk
127.elif ${MACHINE} == "pc98"
128_fdisk_pc98=	fdisk_pc98
129.endif
130_sconfig=	sconfig
131.endif
132
133.if ${MACHINE_ARCH} == "amd64"
134_fdisk=		fdisk
135.endif
136
137.if ${MACHINE_ARCH} == "ia64"
138_fdisk=		fdisk
139_mca=		mca
140.endif
141
142.include <bsd.subdir.mk>
143