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 dev_mkdb \ 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 jail \ 49 jexec \ 50 jls \ 51 kbdcontrol \ 52 kbdmap \ 53 kernbb \ 54 kldxref \ 55 lastlogin \ 56 mailwrapper \ 57 manctl \ 58 memcontrol \ 59 mergemaster \ 60 mixer \ 61 mld6query \ 62 mlxcontrol \ 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 wicontrol \ 129 yp_mkdb \ 130 ypbind \ 131 yppoll \ 132 yppush \ 133 ypserv \ 134 ypset \ 135 zic 136 137.if !defined(NO_IPFILTER) 138SUBDIR+=ipftest \ 139 ipresend \ 140 ipsend \ 141 iptest 142.endif 143 144.if !defined(NOLIBC_R) 145SUBDIR+=pppctl 146.endif 147 148.if !defined(NO_BIND) 149SUBDIR+=named \ 150 named.reload \ 151 named.restart \ 152 ndc \ 153 nslookup \ 154 nsupdate 155.endif 156 157.if !defined(NO_LPR) 158SUBDIR+=lpr 159.endif 160 161.if !defined(NO_SENDMAIL) 162SUBDIR+=editmap \ 163 mailstats \ 164 makemap \ 165 praliases \ 166 sendmail 167.endif 168 169.if ${MACHINE_ARCH} == "alpha" 170SUBDIR+=elf2exe \ 171 pnpinfo 172.endif 173 174.if ${MACHINE_ARCH} == "i386" 175SUBDIR+=acpi \ 176 apm \ 177 apmd \ 178 btxld \ 179 kgmon \ 180 kgzip \ 181 lptcontrol \ 182 mptable \ 183 pccard \ 184 pcvt \ 185 pnpinfo \ 186 sgsc \ 187 sicontrol \ 188 spkrtest \ 189 stallion \ 190 wlconfig 191.if !defined(NO_I4B) 192SUBDIR+=i4b 193.endif 194.endif 195 196.if ${MACHINE} == "i386" 197SUBDIR+=boot0cfg 198.endif 199 200.if ${MACHINE} == "pc98" 201SUBDIR+=boot98cfg 202.endif 203 204.if ${MACHINE_ARCH} == "sparc64" 205SUBDIR+=ofwdump 206.endif 207 208.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) 209SUBDIR+=keyserv 210.endif 211 212.include <bsd.subdir.mk> 213