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