kernel: Fix linux emulation build.
[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 # XXX MISSING:          icheck ncheck
5
6 SUBDIR= adjkerntz \
7         atacontrol \
8         atm \
9         badsect \
10         camcontrol \
11         ccdconfig \
12         clri \
13         comcontrol \
14         cryptdisks \
15         devattr \
16         devd \
17         devfsctl \
18         dhclient \
19         disklabel32 \
20         disklabel64 \
21         diskinfo \
22         dmesg \
23         dump \
24         dumpfs \
25         dumpon \
26         ffsinfo \
27         fsck \
28         fsck_msdosfs \
29         fsdb \
30         fsid \
31         fsirand \
32         getdevpath \
33         growfs \
34         gpt \
35         hammer \
36         ifconfig \
37         init \
38         ip6fw \
39         ipfw \
40         iscontrol \
41         jscan \
42         kldconfig \
43         kldload \
44         kldstat \
45         kldunload \
46         ldconfig \
47         md5 \
48         mkinitrd \
49         mknod \
50         mountctl \
51         mount \
52         mount_cd9660 \
53         mount_devfs \
54         mount_ext2fs \
55         mount_hammer \
56         mount_hpfs \
57         mount_msdos \
58         mount_nfs \
59         mount_ntfs \
60         mount_null \
61         mount_portal \
62         mount_std \
63         mount_tmpfs \
64         mount_udf \
65         mount_union \
66         mountd \
67         natacontrol \
68         natd \
69         newbtconf \
70         newfs \
71         newfs_hammer \
72         newfs_msdos \
73         nfsd \
74         nfsiod \
75         nologin \
76         nos-tun \
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         tcplay \
96         tunefs \
97         udevd \
98         umount \
99         vinum
100
101 .if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
102 .if ${MACHINE_ARCH} == i386
103 SUBDIR+=kget
104 .endif
105 SUBDIR+=mount_nwfs \
106         mount_smbfs \
107         fdisk \
108         nextboot
109 .endif
110
111 .if exists(${.CURDIR}/${MACHINE})
112 SUBDIR+= ${MACHINE}
113 .endif
114 .if exists(${.CURDIR}/${MACHINE_ARCH})
115 SUBDIR+= ${MACHINE_ARCH}
116 .endif
117
118 .include <bsd.subdir.mk>