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