486e4624e5
btuartd(8) should be named btattach(8) for consistency with other parts of NetBSD make btattach(8) a single-use tool for less complexity device specicific initialisation (from btuart(4)) is carried out prior to activating the line discipline (in btattach(8)), which simplifies the API somewhat and means that the user tool and the kernel do not need to be kept in sync. btuart(4) driver is much reduced; naming is made consistent and all tsleep() and delay() are removed to userland
74 lines
2.0 KiB
Makefile
74 lines
2.0 KiB
Makefile
# $NetBSD: Makefile,v 1.232 2008/04/15 11:17:48 plunky Exp $
|
|
# from: @(#)Makefile 5.20 (Berkeley) 6/12/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ac accton acpitools altq amd apm apmd arp bad144 bind bootp \
|
|
btattach btconfig btdevctl bthcid catman \
|
|
chown chroot chrtbl cnwctl cpuctl cron dev_mkdb \
|
|
dhcp diskpart dumpfs dumplfs edquota eeprom \
|
|
envstat eshconfig etcupdate extattrctl fssconfig fwctl gpioctl \
|
|
grfconfig grfinfo gspa hilinfo ifwatchd inetd installboot \
|
|
iopctl iostat ipwctl irdaattach isdn iteconfig iwictl\
|
|
kgmon lastlogin link lmcconfig lockstat lpr mailwrapper makefs \
|
|
map-mbone mdconfig memswitch mlxctl mopd mountd moused \
|
|
mrinfo mrouted mscdlabel mtrace \
|
|
mtree ndbootd ndiscvt netgroup_mkdb nfsd ntp ofctl paxctl pcictl \
|
|
pkg_install \
|
|
pppd pstat pwd_mkdb postinstall powerd quot quotacheck quotaon \
|
|
rarpd rbootd rdate \
|
|
repquota rmt rpc.bootparamd rpc.lockd rpc.pcnfsd \
|
|
rpc.statd rpcbind rwhod sa screenblank sdpd services_mkdb sesd \
|
|
schedctl sliplogin sntp \
|
|
spray srtconfig sti sunlabel sup syslogd tadpolectl tcpdchk \
|
|
tcpdmatch tcpdump tcpdrop timed tpctl traceroute trpt unlink \
|
|
usbdevs user videomode vipw veriexecgen vnconfig wiconfig wlanctl wpa \
|
|
wsconscfg wsfontload wsmoused wsmuxctl zdump zic
|
|
|
|
.if (${MKISCSI} != "no")
|
|
SUBDIR+= iscsi
|
|
.endif
|
|
|
|
.if (${MKKERBEROS} != "no")
|
|
SUBDIR+= hprop kadmin kdc kstash ktutil iprop-log kdigest kimpersonate kcm
|
|
.endif
|
|
|
|
.if (${MKYP} != "no")
|
|
SUBDIR+= rpc.yppasswdd ypbind yppoll ypserv ypset
|
|
.endif
|
|
|
|
.if ${TOOLCHAIN_MISSING} != "no"
|
|
SUBDIR+= mdsetimage
|
|
.endif
|
|
|
|
.if (${MKINET6} != "no")
|
|
SUBDIR+=faithd ifmcstat ndp rip6query rtsold
|
|
.endif
|
|
.if (${USE_INET6} != "no")
|
|
SUBDIR+=mld6query route6d rtadvd traceroute6
|
|
.endif
|
|
|
|
# ATM PVC
|
|
SUBDIR+=pvcsif pvctxctl
|
|
|
|
.if (${MKCRYPTO} != "no")
|
|
SUBDIR+= racoon racoonctl
|
|
.endif
|
|
|
|
# IP Filter
|
|
.if (${MKIPFILTER} != "no")
|
|
SUBDIR+=ipf
|
|
.endif
|
|
|
|
# PF
|
|
.if (${MKPF} != "no")
|
|
SUBDIR+=pf
|
|
.endif
|
|
|
|
# puffs
|
|
.if (${MKPUFFS} != "no")
|
|
SUBDIR+=puffs fusermount
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|