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