xref: /dragonfly/sbin/Makefile (revision e49a8a38)
1#	@(#)Makefile	8.5 (Berkeley) 3/31/94
2# $FreeBSD: src/sbin/Makefile,v 1.77.2.9 2002/08/08 09:03:46 ru Exp $
3# $DragonFly: src/sbin/Makefile,v 1.20 2008/10/03 00:26:21 hasso Exp $
4#
5# XXX MISSING:		icheck ncheck
6
7SUBDIR=	adjkerntz \
8	atacontrol \
9	atm \
10	badsect \
11	camcontrol \
12	ccdconfig \
13	clri \
14	comcontrol \
15	cryptdisks \
16	devattr \
17	devd \
18	devfsctl \
19	dhclient \
20	disklabel32 \
21	disklabel64 \
22	diskinfo \
23	dmesg \
24	dump \
25	dumpfs \
26	dumpon \
27	ffsinfo \
28	fsck \
29	fsck_msdosfs \
30	fsdb \
31	fsid \
32	fsirand \
33	getdevpath \
34	growfs \
35	gpt \
36	hammer \
37	ifconfig \
38	init \
39	ip6fw \
40	ipfw \
41	iscontrol \
42	jscan \
43	kldconfig \
44	kldload \
45	kldstat \
46	kldunload \
47	ldconfig \
48	md5 \
49	mkinitrd \
50	mknod \
51	mountctl \
52	mount \
53	mount_cd9660 \
54	mount_devfs \
55	mount_ext2fs \
56	mount_hammer \
57	mount_hpfs \
58	mount_msdos \
59	mount_nfs \
60	mount_ntfs \
61	mount_null \
62	mount_portal \
63	mount_std \
64	mount_tmpfs \
65	mount_udf \
66	mount_union \
67	mountd \
68	natacontrol \
69	natd \
70	newbtconf \
71	newfs \
72	newfs_hammer \
73	newfs_msdos \
74	nfsd \
75	nfsiod \
76	nologin \
77	nos-tun \
78	ping \
79	ping6 \
80	quotacheck \
81	reboot \
82	rconfig \
83	rcorder \
84	restore \
85	route \
86	routed \
87	rtsol \
88	rcrun \
89	savecore \
90	shutdown \
91	slattach \
92	spppcontrol \
93	startslip \
94	swapon \
95	sysctl \
96	tunefs \
97	udevd \
98	umount \
99	vinum
100
101.if !defined(NO_IPFILTER)
102SUBDIR+=ipf \
103	ipfs \
104	ipfstat \
105	ipmon \
106	ipnat
107.endif
108
109.if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
110.if ${MACHINE_ARCH} == i386
111SUBDIR+=kget
112.endif
113SUBDIR+=mount_nwfs \
114	mount_smbfs \
115	fdisk \
116	nextboot
117.endif
118
119.if exists(${.CURDIR}/${MACHINE})
120SUBDIR+= ${MACHINE}
121.endif
122.if exists(${.CURDIR}/${MACHINE_ARCH})
123SUBDIR+= ${MACHINE_ARCH}
124.endif
125
126.include <bsd.subdir.mk>
127