HAMMER - Update hammer.8 documentation. Document the fsync modes.
[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         mknod \
47         mountctl \
48         mount \
49         mount_cd9660 \
50         mount_devfs \
51         mount_ext2fs \
52         mount_hammer \
53         mount_hpfs \
54         mount_msdos \
55         mount_nfs \
56         mount_ntfs \
57         mount_null \
58         mount_portal \
59         mount_std \
60         mount_tmpfs \
61         mount_udf \
62         mount_union \
63         mountd \
64         natacontrol \
65         natd \
66         newbtconf \
67         newfs \
68         newfs_hammer \
69         newfs_msdos \
70         nfsd \
71         nfsiod \
72         nologin \
73         nos-tun \
74         ping \
75         ping6 \
76         quotacheck \
77         reboot \
78         rconfig \
79         rcorder \
80         restore \
81         route \
82         routed \
83         rtsol \
84         rcrun \
85         savecore \
86         shutdown \
87         slattach \
88         spppcontrol \
89         startslip \
90         swapon \
91         sysctl \
92         tunefs \
93         umount \
94         vinum
95
96 .if !defined(NO_IPFILTER)
97 SUBDIR+=ipf \
98         ipfs \
99         ipfstat \
100         ipmon \
101         ipnat
102 .endif
103
104 .if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
105 .if ${MACHINE_ARCH} == i386
106 SUBDIR+=kget
107 .endif
108 SUBDIR+=mount_nwfs \
109         mount_smbfs \
110         fdisk \
111         nextboot
112 .endif
113
114 .if exists(${.CURDIR}/${MACHINE})
115 SUBDIR+= ${MACHINE}
116 .endif
117 .if exists(${.CURDIR}/${MACHINE_ARCH})
118 SUBDIR+= ${MACHINE_ARCH}
119 .endif
120
121 .include <bsd.subdir.mk>