1# From: @(#)Makefile 5.20 (Berkeley) 6/12/93 2# $FreeBSD$ 3 4.if ${MACHINE_ARCH} != "powerpc" 5_sysinstall=sysinstall 6.endif 7 8# XXX MISSING: mkproto 9SUBDIR= IPXrouted \ 10 ac \ 11 accton \ 12 adduser \ 13 amd \ 14 ancontrol \ 15 arp \ 16 bootparamd \ 17 bsnmpd \ 18 burncd \ 19 cdcontrol \ 20 chkgrp \ 21 chown \ 22 chroot \ 23 ckdist \ 24 config \ 25 cron \ 26 crunch \ 27 ctm \ 28 daemon \ 29 dconschat \ 30 devinfo \ 31 digictl \ 32 diskinfo \ 33 edquota \ 34 extattr \ 35 extattrctl \ 36 faithd \ 37 fdcontrol \ 38 fdformat \ 39 fdread \ 40 fdwrite \ 41 fwcontrol \ 42 getfmac \ 43 getpmac \ 44 gstat \ 45 ifmcstat \ 46 inetd \ 47 iostat \ 48 ip6addrctl \ 49 jail \ 50 jexec \ 51 jls \ 52 kbdcontrol \ 53 kbdmap \ 54 kernbb \ 55 kldxref \ 56 lastlogin \ 57 mailwrapper \ 58 manctl \ 59 memcontrol \ 60 mergemaster \ 61 mixer \ 62 mlxcontrol \ 63 mount_portalfs \ 64 mountd \ 65 moused \ 66 mrouted \ 67 mtest \ 68 mtree \ 69 ndp \ 70 newsyslog \ 71 nfsd \ 72 ngctl \ 73 ntp \ 74 nghook \ 75 pciconf \ 76 periodic \ 77 pkg_install \ 78 ppp \ 79 pppd \ 80 pppstats \ 81 procctl \ 82 pstat \ 83 pw \ 84 pwd_mkdb \ 85 quot \ 86 quotaon \ 87 rarpd \ 88 raycontrol \ 89 repquota \ 90 rmt \ 91 rpcbind \ 92 rpc.lockd \ 93 rpc.statd \ 94 rpc.umntall \ 95 rpc.yppasswdd \ 96 rpc.ypupdated \ 97 rpc.ypxfrd \ 98 rrenumd \ 99 rtadvd \ 100 rtprio \ 101 rtsold \ 102 rwhod \ 103 sa \ 104 setfmac \ 105 setkey \ 106 setpmac \ 107 sliplogin \ 108 slstat \ 109 spray \ 110 ${_sysinstall} \ 111 syslogd \ 112 tcpdchk \ 113 tcpdmatch \ 114 tcpdump \ 115 timed \ 116 traceroute \ 117 trpt \ 118 tzsetup \ 119 ugidfw \ 120 vidcontrol \ 121 vipw \ 122 vnconfig \ 123 watch \ 124 watchdogd \ 125 wicontrol \ 126 yp_mkdb \ 127 ypbind \ 128 yppoll \ 129 yppush \ 130 ypserv \ 131 ypset \ 132 zic 133 134.if !defined(NOATM) 135SUBDIR+=atm 136.endif 137 138.if !defined(NOINET6) 139SUBDIR+=mld6query \ 140 rip6query \ 141 route6d \ 142 traceroute6 143.endif 144 145.if !defined(NO_IPFILTER) 146SUBDIR+=ipftest \ 147 ipresend \ 148 ipsend \ 149 iptest 150.endif 151 152.if !defined(NO_USB) 153SUBDIR+=usbd \ 154 usbdevs 155.endif 156.if !defined(NOLIBC_R) && ${MACHINE_ARCH} != "powerpc" 157SUBDIR+=pppctl 158.endif 159 160.if !defined(NO_BIND) 161SUBDIR+=named \ 162 named.reload \ 163 named.restart \ 164 ndc \ 165 nslookup \ 166 nsupdate 167.endif 168 169.if !defined(NO_LPR) 170SUBDIR+=lpr 171.endif 172 173.if !defined(NO_SENDMAIL) 174SUBDIR+=editmap \ 175 mailstats \ 176 makemap \ 177 praliases \ 178 sendmail 179.endif 180 181.if ${MACHINE_ARCH} == "alpha" 182SUBDIR+=elf2exe \ 183 pnpinfo 184.endif 185 186.if ${MACHINE_ARCH} == "i386" 187SUBDIR+=apm \ 188 apmd \ 189 asf \ 190 bluetooth \ 191 btxld \ 192 kgmon \ 193 kgzip \ 194 lptcontrol \ 195 mount_nwfs \ 196 mount_smbfs \ 197 mptable \ 198 ndiscvt \ 199 pccard \ 200 pcvt \ 201 pnpinfo \ 202 sgsc \ 203 sicontrol \ 204 spkrtest \ 205 stallion \ 206 wlconfig \ 207 zzz 208 209.if !defined(NO_ACPI) 210SUBDIR+=acpi 211.endif 212 213.if !defined(NO_I4B) 214SUBDIR+=i4b 215.endif 216 217.endif 218 219.if ${MACHINE_ARCH} == "ia64" 220SUBDIR+=acpi \ 221 zzz 222.endif 223 224# kgmon: builds, but no kernel profiling 225# kgzip: builds, but missing support files 226# mptable: broken (not 64 bit clean) 227# pnpinfo: crashes (not really useful anyway) 228.if ${MACHINE_ARCH} == "amd64" 229SUBDIR+=acpi \ 230 asf \ 231 boot0cfg \ 232 btxld \ 233 lptcontrol \ 234 mount_nwfs \ 235 mount_smbfs \ 236 mptable \ 237 pcvt/ispcvt \ 238 sicontrol \ 239 spkrtest \ 240 zzz 241.endif 242 243.if ${MACHINE} == "i386" 244SUBDIR+=boot0cfg 245.endif 246 247.if ${MACHINE} == "pc98" 248SUBDIR+=boot98cfg 249.endif 250 251.if ${MACHINE_ARCH} == "sparc64" 252SUBDIR+=ofwdump 253.endif 254 255.if !defined(NOCRYPT) && !defined(NO_OPENSSL) 256SUBDIR+=keyserv 257.endif 258 259.include <bsd.subdir.mk> 260