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