ifconfig(8): Default to AF_LOCAL sockets for non-family-specific operations
[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
4 SUBDIR= adjkerntz \
5         badsect \
6         camcontrol \
7         ccdconfig \
8         clri \
9         comcontrol \
10         cryptdisks \
11         devattr \
12         devd \
13         devfsctl \
14         dhclient \
15         disklabel32 \
16         disklabel64 \
17         diskinfo \
18         dmesg \
19         dump \
20         dumpfs \
21         dumpon \
22         ffsinfo \
23         fsck \
24         fsck_msdosfs \
25         fsdb \
26         fsid \
27         fsirand \
28         getdevpath \
29         growfs \
30         gpt \
31         hammer \
32         hammer2 \
33         ifconfig \
34         init \
35         ip6fw \
36         ipfw \
37         ipfw3 \
38         iscontrol \
39         jscan \
40         kldconfig \
41         kldload \
42         kldstat \
43         kldunload \
44         ldconfig \
45         md5 \
46         mountctl \
47         mount \
48         mount_ufs \
49         mount_cd9660 \
50         mount_devfs \
51         mount_dirfs \
52         mount_ext2fs \
53         mount_hammer \
54         mount_hammer2 \
55         mount_hpfs \
56         mount_msdos \
57         mount_nfs \
58         mount_ntfs \
59         mount_null \
60         mount_std \
61         mount_tmpfs \
62         mount_udf \
63         mount_autofs \
64         mountd \
65         natacontrol \
66         natd \
67         newbtconf \
68         newfs \
69         newfs_hammer \
70         newfs_hammer2 \
71         newfs_msdos \
72         nfsd \
73         nfsiod \
74         nologin \
75         nos-tun \
76         nvmectl \
77         ping \
78         ping6 \
79         quotacheck \
80         reboot \
81         rconfig \
82         rcorder \
83         restore \
84         route \
85         routed \
86         rtsol \
87         rcrun \
88         savecore \
89         shutdown \
90         slattach \
91         spppcontrol \
92         startslip \
93         swapon \
94         sysctl \
95         svc \
96         tcplay \
97         tunefs \
98         udevd \
99         umount \
100         usched \
101         vinum \
102         vquota
103
104 .if ${MACHINE_ARCH} == "x86_64"
105 SUBDIR+=mount_smbfs \
106         fdisk \
107         nextboot
108 .endif
109
110 .if exists(${.CURDIR}/${MACHINE})
111 SUBDIR+= ${MACHINE}
112 .endif
113 .if exists(${.CURDIR}/${MACHINE_ARCH})
114 SUBDIR+= ${MACHINE_ARCH}
115 .endif
116
117 # maximum parallelism
118 #
119 SUBDIR_ORDERED=
120
121 .include <bsd.subdir.mk>