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