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 atm \ 17 bootparamd \ 18 burncd \ 19 cdcontrol \ 20 chkgrp \ 21 chown \ 22 chroot \ 23 ckdist \ 24 config \ 25 cron \ 26 crunch \ 27 ctm \ 28 daemon \ 29 devinfo \ 30 digictl \ 31 diskinfo \ 32 edquota \ 33 extattr \ 34 extattrctl \ 35 faithd \ 36 fdcontrol \ 37 fdformat \ 38 fdread \ 39 fdwrite \ 40 fwcontrol \ 41 getfmac \ 42 getpmac \ 43 gstat \ 44 ifmcstat \ 45 inetd \ 46 iostat \ 47 jail \ 48 jexec \ 49 jls \ 50 kbdcontrol \ 51 kbdmap \ 52 kernbb \ 53 kldxref \ 54 lastlogin \ 55 mailwrapper \ 56 manctl \ 57 memcontrol \ 58 mergemaster \ 59 mixer \ 60 mld6query \ 61 mlxcontrol \ 62 mount_portalfs \ 63 mountd \ 64 moused \ 65 mrouted \ 66 mtest \ 67 mtree \ 68 ndp \ 69 newsyslog \ 70 nfsd \ 71 ngctl \ 72 ntp \ 73 nghook \ 74 pciconf \ 75 periodic \ 76 pkg_install \ 77 ppp \ 78 pppd \ 79 pppstats \ 80 procctl \ 81 pstat \ 82 pw \ 83 pwd_mkdb \ 84 quot \ 85 quotaon \ 86 rarpd \ 87 raycontrol \ 88 repquota \ 89 rip6query \ 90 rmt \ 91 route6d \ 92 rpcbind \ 93 rpc.lockd \ 94 rpc.statd \ 95 rpc.umntall \ 96 rpc.yppasswdd \ 97 rpc.ypupdated \ 98 rpc.ypxfrd \ 99 rrenumd \ 100 rtadvd \ 101 rtprio \ 102 rtsold \ 103 rwhod \ 104 sa \ 105 setfmac \ 106 setkey \ 107 setpmac \ 108 sliplogin \ 109 slstat \ 110 spray \ 111 ${_sysinstall} \ 112 syslogd \ 113 tcpdchk \ 114 tcpdmatch \ 115 tcpdump \ 116 timed \ 117 traceroute \ 118 traceroute6 \ 119 trpt \ 120 tzsetup \ 121 ugidfw \ 122 usbd \ 123 usbdevs \ 124 vidcontrol \ 125 vipw \ 126 vnconfig \ 127 watch \ 128 watchdogd \ 129 wicontrol \ 130 yp_mkdb \ 131 ypbind \ 132 yppoll \ 133 yppush \ 134 ypserv \ 135 ypset \ 136 zic 137 138.if !defined(NO_IPFILTER) 139SUBDIR+=ipftest \ 140 ipresend \ 141 ipsend \ 142 iptest 143.endif 144 145.if !defined(NOLIBC_R) 146SUBDIR+=pppctl 147.endif 148 149.if !defined(NO_BIND) 150SUBDIR+=named \ 151 named.reload \ 152 named.restart \ 153 ndc \ 154 nslookup \ 155 nsupdate 156.endif 157 158.if !defined(NO_LPR) 159SUBDIR+=lpr 160.endif 161 162.if !defined(NO_SENDMAIL) 163SUBDIR+=editmap \ 164 mailstats \ 165 makemap \ 166 praliases \ 167 sendmail 168.endif 169 170.if ${MACHINE_ARCH} == "alpha" 171SUBDIR+=elf2exe \ 172 pnpinfo 173.endif 174 175.if ${MACHINE_ARCH} == "i386" 176SUBDIR+=acpi \ 177 apm \ 178 apmd \ 179 btxld \ 180 kgmon \ 181 kgzip \ 182 lptcontrol \ 183 mount_nwfs \ 184 mount_smbfs \ 185 mptable \ 186 pccard \ 187 pcvt \ 188 pnpinfo \ 189 sgsc \ 190 sicontrol \ 191 spkrtest \ 192 stallion \ 193 wlconfig 194.if !defined(NO_I4B) 195SUBDIR+=i4b 196.endif 197.endif 198 199.if ${MACHINE_ARCH} == "amd64" 200SUBDIR+= btxld 201.endif 202 203.if ${MACHINE} == "i386" 204SUBDIR+=boot0cfg 205.endif 206 207.if ${MACHINE} == "pc98" 208SUBDIR+=boot98cfg 209.endif 210 211.if ${MACHINE_ARCH} == "sparc64" 212SUBDIR+=ofwdump 213.endif 214 215.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) 216SUBDIR+=keyserv 217.endif 218 219.include <bsd.subdir.mk> 220