Makefile revision 1.299
1# $NetBSD: Makefile,v 1.299 2025/12/24 15:37:30 thorpej Exp $ 2# from: @(#)Makefile 5.20 (Berkeley) 6/12/93 3 4.include <bsd.own.mk> 5 6SUBDIR= ac accton acpitools altq apm apmd arp \ 7 bad144 bootp catman \ 8 certctl chroot cpuctl crash \ 9 dev_mkdb diskpart dumpfs \ 10 edquota eeprom emcfanctl envstat etcupdate extattrctl \ 11 flashctl fssconfig fstyp fusermount fwctl \ 12 gpioctl grfconfig gspa \ 13 i2cscan ifwatchd inetd installboot intrctl iopctl iostat ipwctl irdaattach \ 14 isibootd iteconfig \ 15 kgmon \ 16 lastlogin ldpd link lockstat lpr \ 17 mailwrapper makefs map-mbone mdconfig memswitch mlxctl mmcformat \ 18 mopd moused mrinfo mrouted mscdlabel mtrace mtree \ 19 ndbootd netgroup_mkdb \ 20 ofctl \ 21 paxctl pcictl perfused psrset pstat pwd_mkdb postinstall \ 22 powerd puffs \ 23 quot quotacheck quotaon quotarestore \ 24 rarpd rbootd rdate repquota rmt rpc.bootparamd rpcbind rwhod \ 25 sa screenblank service services_mkdb sesd schedctl \ 26 sliplogin spray \ 27 srtconfig sti sunlabel sysinst syslogd \ 28 tadpolectl tcpdchk tcpdmatch tcpdrop timed tpctl tprof traceroute trpt \ 29 umcpmioctl unlink usbdevs user \ 30 videomode vipw veriexecgen vnconfig \ 31 wakeonlan wg-keygen wg-userspace wgconfig \ 32 wsconscfg wsfontload wsmoused wsmuxctl \ 33 zdump zic 34 35.if (${MKAUDIO} != "no") 36SUBDIR+= hdaudioctl 37.endif 38 39.if (${MKAUTOFS} != "no") 40SUBDIR+= autofs 41.endif 42 43.if (${MKLFS} != "no") 44SUBDIR+= dumplfs 45.endif 46 47.if (${MKNFS} != "no") 48SUBDIR+= mountd nfsd rpc.lockd rpc.pcnfsd rpc.statd 49.endif 50 51.if (${MKBLUETOOTH} != "no") 52SUBDIR+= bta2dpd btattach btconfig btdevctl bthcid btpand sdpd 53.endif 54 55.if ${MKMAKEMANDB} != "no" 56SUBDIR+= makemandb 57.endif 58 59.if (${MKYP} != "no") 60SUBDIR+= rpc.yppasswdd ypbind yppoll ypserv ypset 61.endif 62 63.if ${TOOLCHAIN_MISSING} != "no" 64SUBDIR+= mdsetimage 65.endif 66 67.if (${MKINET6} != "no") 68SUBDIR+=faithd ifmcstat ip6addrctl ndp rip6query rtsold 69.endif 70.if (${USE_INET6} != "no") 71SUBDIR+=mld6query route6d rtadvd traceroute6 72.endif 73 74SUBDIR+= plainrsa-gen racoon racoonctl 75 76SUBDIR+= nvmmctl 77 78# NPF 79.if (${MKNPF} != "no") 80SUBDIR+=npf 81.endif 82 83# PF 84.if (${MKPF} != "no") 85SUBDIR+=pf 86.endif 87 88.if (${MKWLAN} != "no") 89SUBDIR+=cnwctl iwictl wiconfig wlanctl 90.endif 91 92.include <bsd.subdir.mk> 93