1995-06-13 18:07:05 +00:00
|
|
|
# From: @(#)Makefile 5.20 (Berkeley) 6/12/93
|
1999-08-28 01:35:59 +00:00
|
|
|
# $FreeBSD$
|
1994-05-26 05:23:31 +00:00
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2011-06-17 21:30:21 +00:00
|
|
|
SUBDIR= adduser \
|
1998-08-30 20:58:16 +00:00
|
|
|
arp \
|
|
|
|
bootparamd \
|
2013-07-06 04:13:47 +00:00
|
|
|
bsdconfig \
|
2011-02-18 14:54:34 +00:00
|
|
|
bsdinstall \
|
1998-08-30 20:58:16 +00:00
|
|
|
cdcontrol \
|
|
|
|
chkgrp \
|
|
|
|
chown \
|
|
|
|
chroot \
|
|
|
|
ckdist \
|
2008-03-26 15:23:12 +00:00
|
|
|
clear_locks \
|
2008-08-05 20:41:46 +00:00
|
|
|
crashinfo \
|
1998-08-30 20:58:16 +00:00
|
|
|
cron \
|
Add the CAM Target Layer (CTL).
CTL is a disk and processor device emulation subsystem originally written
for Copan Systems under Linux starting in 2003. It has been shipping in
Copan (now SGI) products since 2005.
It was ported to FreeBSD in 2008, and thanks to an agreement between SGI
(who acquired Copan's assets in 2010) and Spectra Logic in 2010, CTL is
available under a BSD-style license. The intent behind the agreement was
that Spectra would work to get CTL into the FreeBSD tree.
Some CTL features:
- Disk and processor device emulation.
- Tagged queueing
- SCSI task attribute support (ordered, head of queue, simple tags)
- SCSI implicit command ordering support. (e.g. if a read follows a mode
select, the read will be blocked until the mode select completes.)
- Full task management support (abort, LUN reset, target reset, etc.)
- Support for multiple ports
- Support for multiple simultaneous initiators
- Support for multiple simultaneous backing stores
- Persistent reservation support
- Mode sense/select support
- Error injection support
- High Availability support (1)
- All I/O handled in-kernel, no userland context switch overhead.
(1) HA Support is just an API stub, and needs much more to be fully
functional.
ctl.c: The core of CTL. Command handlers and processing,
character driver, and HA support are here.
ctl.h: Basic function declarations and data structures.
ctl_backend.c,
ctl_backend.h: The basic CTL backend API.
ctl_backend_block.c,
ctl_backend_block.h: The block and file backend. This allows for using
a disk or a file as the backing store for a LUN.
Multiple threads are started to do I/O to the
backing device, primarily because the VFS API
requires that to get any concurrency.
ctl_backend_ramdisk.c: A "fake" ramdisk backend. It only allocates a
small amount of memory to act as a source and sink
for reads and writes from an initiator. Therefore
it cannot be used for any real data, but it can be
used to test for throughput. It can also be used
to test initiators' support for extremely large LUNs.
ctl_cmd_table.c: This is a table with all 256 possible SCSI opcodes,
and command handler functions defined for supported
opcodes.
ctl_debug.h: Debugging support.
ctl_error.c,
ctl_error.h: CTL-specific wrappers around the CAM sense building
functions.
ctl_frontend.c,
ctl_frontend.h: These files define the basic CTL frontend port API.
ctl_frontend_cam_sim.c: This is a CTL frontend port that is also a CAM SIM.
This frontend allows for using CTL without any
target-capable hardware. So any LUNs you create in
CTL are visible in CAM via this port.
ctl_frontend_internal.c,
ctl_frontend_internal.h:
This is a frontend port written for Copan to do
some system-specific tasks that required sending
commands into CTL from inside the kernel. This
isn't entirely relevant to FreeBSD in general,
but can perhaps be repurposed.
ctl_ha.h: This is a stubbed-out High Availability API. Much
more is needed for full HA support. See the
comments in the header and the description of what
is needed in the README.ctl.txt file for more
details.
ctl_io.h: This defines most of the core CTL I/O structures.
union ctl_io is conceptually very similar to CAM's
union ccb.
ctl_ioctl.h: This defines all ioctls available through the CTL
character device, and the data structures needed
for those ioctls.
ctl_mem_pool.c,
ctl_mem_pool.h: Generic memory pool implementation used by the
internal frontend.
ctl_private.h: Private data structres (e.g. CTL softc) and
function prototypes. This also includes the SCSI
vendor and product names used by CTL.
ctl_scsi_all.c,
ctl_scsi_all.h: CTL wrappers around CAM sense printing functions.
ctl_ser_table.c: Command serialization table. This defines what
happens when one type of command is followed by
another type of command.
ctl_util.c,
ctl_util.h: CTL utility functions, primarily designed to be
used from userland. See ctladm for the primary
consumer of these functions. These include CDB
building functions.
scsi_ctl.c: CAM target peripheral driver and CTL frontend port.
This is the path into CTL for commands from
target-capable hardware/SIMs.
README.ctl.txt: CTL code features, roadmap, to-do list.
usr.sbin/Makefile: Add ctladm.
ctladm/Makefile,
ctladm/ctladm.8,
ctladm/ctladm.c,
ctladm/ctladm.h,
ctladm/util.c: ctladm(8) is the CTL management utility.
It fills a role similar to camcontrol(8).
It allow configuring LUNs, issuing commands,
injecting errors and various other control
functions.
usr.bin/Makefile: Add ctlstat.
ctlstat/Makefile
ctlstat/ctlstat.8,
ctlstat/ctlstat.c: ctlstat(8) fills a role similar to iostat(8).
It reports I/O statistics for CTL.
sys/conf/files: Add CTL files.
sys/conf/NOTES: Add device ctl.
sys/cam/scsi_all.h: To conform to more recent specs, the inquiry CDB
length field is now 2 bytes long.
Add several mode page definitions for CTL.
sys/cam/scsi_all.c: Handle the new 2 byte inquiry length.
sys/dev/ciss/ciss.c,
sys/dev/ata/atapi-cam.c,
sys/cam/scsi/scsi_targ_bh.c,
scsi_target/scsi_cmds.c,
mlxcontrol/interface.c: Update for 2 byte inquiry length field.
scsi_da.h: Add versions of the format and rigid disk pages
that are in a more reasonable format for CTL.
amd64/conf/GENERIC,
i386/conf/GENERIC,
ia64/conf/GENERIC,
sparc64/conf/GENERIC: Add device ctl.
i386/conf/PAE: The CTL frontend SIM at least does not compile
cleanly on PAE.
Sponsored by: Copan Systems, SGI and Spectra Logic
MFC after: 1 month
2012-01-12 00:34:33 +00:00
|
|
|
ctladm \
|
2001-08-30 04:48:02 +00:00
|
|
|
daemon \
|
2003-10-24 15:44:10 +00:00
|
|
|
dconschat \
|
2001-04-21 00:13:57 +00:00
|
|
|
devinfo \
|
2001-05-02 01:08:09 +00:00
|
|
|
digictl \
|
2003-04-09 10:52:10 +00:00
|
|
|
diskinfo \
|
2008-11-17 22:19:19 +00:00
|
|
|
dumpcis \
|
2012-07-13 13:23:48 +00:00
|
|
|
etcupdate \
|
2002-09-02 19:28:59 +00:00
|
|
|
extattr \
|
2000-04-15 05:14:39 +00:00
|
|
|
extattrctl \
|
2008-03-10 12:53:41 +00:00
|
|
|
fifolog \
|
2002-12-30 10:13:16 +00:00
|
|
|
fwcontrol \
|
2002-10-23 03:15:24 +00:00
|
|
|
getfmac \
|
|
|
|
getpmac \
|
2003-03-20 20:48:41 +00:00
|
|
|
gstat \
|
2009-01-26 14:00:50 +00:00
|
|
|
i2c \
|
1999-12-29 07:11:50 +00:00
|
|
|
ifmcstat \
|
1998-08-30 20:58:16 +00:00
|
|
|
inetd \
|
1998-11-09 23:39:02 +00:00
|
|
|
iostat \
|
2012-08-25 18:08:20 +00:00
|
|
|
isfctl \
|
2001-09-11 01:13:15 +00:00
|
|
|
kldxref \
|
2001-08-18 03:36:26 +00:00
|
|
|
mailwrapper \
|
2008-12-19 23:10:55 +00:00
|
|
|
makefs \
|
1999-04-07 04:12:02 +00:00
|
|
|
memcontrol \
|
1999-10-20 07:33:09 +00:00
|
|
|
mergemaster \
|
2009-08-13 23:18:45 +00:00
|
|
|
mfiutil \
|
1999-11-13 18:34:22 +00:00
|
|
|
mixer \
|
2000-04-11 03:02:37 +00:00
|
|
|
mlxcontrol \
|
2002-07-07 22:17:38 +00:00
|
|
|
mountd \
|
2009-08-14 13:13:12 +00:00
|
|
|
mptutil \
|
1998-08-30 20:58:16 +00:00
|
|
|
mtest \
|
|
|
|
mtree \
|
|
|
|
newsyslog \
|
2009-05-26 15:19:04 +00:00
|
|
|
nfscbd \
|
2002-07-07 22:17:38 +00:00
|
|
|
nfsd \
|
2009-05-26 15:19:04 +00:00
|
|
|
nfsdumpstate \
|
|
|
|
nfsrevoke \
|
|
|
|
nfsuserd \
|
2012-12-21 21:00:00 +00:00
|
|
|
nmtree \
|
2004-03-13 11:02:37 +00:00
|
|
|
nologin \
|
2013-01-18 15:57:09 +00:00
|
|
|
${_pc_sysinstall} \
|
1998-08-30 20:58:16 +00:00
|
|
|
pciconf \
|
|
|
|
periodic \
|
2005-02-26 21:18:20 +00:00
|
|
|
powerd \
|
1998-08-30 20:58:16 +00:00
|
|
|
procctl \
|
|
|
|
pstat \
|
|
|
|
pw \
|
|
|
|
pwd_mkdb \
|
|
|
|
quot \
|
|
|
|
rarpd \
|
|
|
|
rmt \
|
Bring in a hybrid of SunSoft's transport-independent RPC (TI-RPC) and
associated changes that had to happen to make this possible as well as
bugs fixed along the way.
Bring in required TLI library routines to support this.
Since we don't support TLI we've essentially copied what NetBSD
has done, adding a thin layer to emulate direct the TLI calls
into BSD socket calls.
This is mostly from Sun's tirpc release that was made in 1994,
however some fixes were backported from the 1999 release (supposedly
only made available after this porting effort was underway).
The submitter has agreed to continue on and bring us up to the
1999 release.
Several key features are introduced with this update:
Client calls are thread safe. (1999 code has server side thread
safe)
Updated, a more modern interface.
Many userland updates were done to bring the code up to par with
the recent RPC API.
There is an update to the pthreads library, a function
pthread_main_np() was added to emulate a function of Sun's threads
library.
While we're at it, bring in NetBSD's lockd, it's been far too
long of a wait.
New rpcbind(8) replaces portmap(8) (supporting communication over
an authenticated Unix-domain socket, and by default only allowing
set and unset requests over that channel). It's much more secure
than the old portmapper.
Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded
to support TI-RPC and to support IPV6.
Umount(8) is also fixed to unmount pathnames longer than 80 chars,
which are currently truncated by the Kernel statfs structure.
Submitted by: Martin Blapp <mb@imp.ch>
Manpage review: ru
Secure RPC implemented by: wpaul
2001-03-19 12:50:13 +00:00
|
|
|
rpcbind \
|
1998-08-30 20:58:16 +00:00
|
|
|
rpc.lockd \
|
|
|
|
rpc.statd \
|
1999-11-21 08:06:00 +00:00
|
|
|
rpc.umntall \
|
1998-11-09 23:39:02 +00:00
|
|
|
rtprio \
|
2009-12-20 01:34:12 +00:00
|
|
|
service \
|
2010-04-04 08:38:14 +00:00
|
|
|
services_mkdb \
|
2008-05-10 00:43:13 +00:00
|
|
|
setfib \
|
2002-10-23 03:15:24 +00:00
|
|
|
setfmac \
|
|
|
|
setpmac \
|
2004-05-17 10:57:03 +00:00
|
|
|
smbmsg \
|
2005-07-20 22:53:57 +00:00
|
|
|
snapinfo \
|
1998-08-30 20:58:16 +00:00
|
|
|
spray \
|
|
|
|
syslogd \
|
2013-07-06 04:13:47 +00:00
|
|
|
sysrc \
|
1999-03-14 18:02:14 +00:00
|
|
|
tcpdchk \
|
|
|
|
tcpdmatch \
|
2005-02-06 10:47:12 +00:00
|
|
|
tcpdrop \
|
1999-04-28 08:00:50 +00:00
|
|
|
tcpdump \
|
1998-08-30 20:58:16 +00:00
|
|
|
timed \
|
|
|
|
traceroute \
|
|
|
|
trpt \
|
|
|
|
tzsetup \
|
2002-08-02 07:14:22 +00:00
|
|
|
ugidfw \
|
1998-08-30 20:58:16 +00:00
|
|
|
vipw \
|
2009-06-30 18:51:22 +00:00
|
|
|
wake \
|
1998-08-30 20:58:16 +00:00
|
|
|
watch \
|
2003-06-26 09:50:52 +00:00
|
|
|
watchdogd \
|
2010-09-13 02:21:07 +00:00
|
|
|
zic
|
2004-01-16 15:23:19 +00:00
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
|
|
|
|
.if ${MK_ACCT} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= accton
|
|
|
|
SUBDIR+= sa
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_AMD} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= amd
|
2004-01-16 15:23:19 +00:00
|
|
|
.endif
|
1998-03-21 13:53:18 +00:00
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_AUDIT} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= audit
|
|
|
|
SUBDIR+= auditd
|
2012-12-01 15:11:46 +00:00
|
|
|
.if ${MK_OPENSSL} != "no"
|
|
|
|
SUBDIR+= auditdistd
|
|
|
|
.endif
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= auditreduce
|
|
|
|
SUBDIR+= praudit
|
2006-02-18 16:40:31 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_AUTHPF} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= authpf
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_BIND_DNSSEC} != "no" && ${MK_OPENSSL} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= dnssec-dsfromkey
|
|
|
|
SUBDIR+= dnssec-keyfromlabel
|
|
|
|
SUBDIR+= dnssec-keygen
|
2011-07-16 11:20:54 +00:00
|
|
|
SUBDIR+= dnssec-revoke
|
|
|
|
SUBDIR+= dnssec-settime
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= dnssec-signzone
|
2013-08-22 08:15:03 +00:00
|
|
|
SUBDIR+= dnssec-verify
|
2004-09-22 12:13:58 +00:00
|
|
|
.endif
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_BIND_NAMED} != "no"
|
2011-07-16 11:20:54 +00:00
|
|
|
SUBDIR+= arpaname
|
|
|
|
SUBDIR+= ddns-confgen
|
|
|
|
SUBDIR+= genrandom
|
|
|
|
SUBDIR+= isc-hmac-fixup
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= named
|
|
|
|
SUBDIR+= named-checkconf
|
|
|
|
SUBDIR+= named-checkzone
|
2011-07-16 11:20:54 +00:00
|
|
|
SUBDIR+= named-journalprint
|
|
|
|
SUBDIR+= nsec3hash
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= rndc
|
|
|
|
SUBDIR+= rndc-confgen
|
2003-08-27 19:59:49 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_BLUETOOTH} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= bluetooth
|
2004-07-07 22:48:30 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_BSNMP} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= bsnmpd
|
2002-03-21 09:15:39 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_CTM} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= ctm
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_FLOPPY} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= fdcontrol
|
|
|
|
SUBDIR+= fdformat
|
|
|
|
SUBDIR+= fdread
|
|
|
|
SUBDIR+= fdwrite
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_FREEBSD_UPDATE} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= freebsd-update
|
2007-07-03 12:46:08 +00:00
|
|
|
.endif
|
|
|
|
|
2010-11-06 15:04:48 +00:00
|
|
|
.if ${MK_GSSAPI} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= gssd
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
.endif
|
2010-10-05 21:19:20 +00:00
|
|
|
|
|
|
|
.if ${MK_GPIO} != "no"
|
|
|
|
SUBDIR+= gpioctl
|
|
|
|
.endif
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_INET6} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= faithd
|
|
|
|
SUBDIR+= ip6addrctl
|
|
|
|
SUBDIR+= mld6query
|
|
|
|
SUBDIR+= ndp
|
|
|
|
SUBDIR+= rip6query
|
|
|
|
SUBDIR+= route6d
|
|
|
|
SUBDIR+= rrenumd
|
2011-07-17 19:24:54 +00:00
|
|
|
SUBDIR+= rtadvctl
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= rtadvd
|
|
|
|
SUBDIR+= rtsold
|
|
|
|
SUBDIR+= traceroute6
|
2003-08-29 10:35:01 +00:00
|
|
|
.endif
|
2004-01-16 15:23:19 +00:00
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_IPFW} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= ipfwpcap
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-20 14:24:58 +00:00
|
|
|
.if ${MK_IPX} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= IPXrouted
|
2006-03-20 14:24:58 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_JAIL} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= jail
|
|
|
|
SUBDIR+= jexec
|
|
|
|
SUBDIR+= jls
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# XXX MK_SYSCONS
|
|
|
|
.if ${MK_LEGACY_CONSOLE} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= kbdcontrol
|
|
|
|
SUBDIR+= kbdmap
|
|
|
|
SUBDIR+= moused
|
|
|
|
SUBDIR+= vidcontrol
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2008-10-27 15:15:08 +00:00
|
|
|
.if ${MK_LIBTHR} != "no" || ${MK_LIBPTHREAD} != "no"
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_PPP} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= pppctl
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
.if ${MK_NS_CACHING} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= nscd
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_LPR} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= lpr
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2010-05-19 23:56:26 +00:00
|
|
|
.if ${MK_MAN_UTILS} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= manctl
|
2010-05-19 23:56:26 +00:00
|
|
|
.endif
|
|
|
|
|
2012-05-17 10:11:18 +00:00
|
|
|
.if ${MK_NAND} != "no"
|
|
|
|
SUBDIR+= nandsim
|
|
|
|
SUBDIR+= nandtool
|
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_NETGRAPH} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= flowctl
|
|
|
|
SUBDIR+= lmcconfig
|
|
|
|
SUBDIR+= ngctl
|
|
|
|
SUBDIR+= nghook
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_NIS} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= rpc.yppasswdd
|
|
|
|
SUBDIR+= rpc.ypupdated
|
|
|
|
SUBDIR+= rpc.ypxfrd
|
|
|
|
SUBDIR+= ypbind
|
|
|
|
SUBDIR+= yp_mkdb
|
|
|
|
SUBDIR+= yppoll
|
|
|
|
SUBDIR+= yppush
|
|
|
|
SUBDIR+= ypserv
|
|
|
|
SUBDIR+= ypset
|
2004-11-13 20:40:32 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_NTP} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= ntp
|
2004-03-08 22:03:29 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_OPENSSL} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= keyserv
|
2007-10-01 18:22:32 +00:00
|
|
|
.endif
|
|
|
|
|
2013-01-18 15:57:09 +00:00
|
|
|
.if ${MK_PC_SYSINSTALL} != "no"
|
|
|
|
_pc_sysinstall= pc-sysinstall
|
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_PF} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= ftp-proxy
|
2000-05-31 21:45:15 +00:00
|
|
|
.endif
|
|
|
|
|
2012-07-02 18:04:31 +00:00
|
|
|
.if ${MK_PKGBOOTSTRAP} != "no"
|
2012-07-02 15:28:50 +00:00
|
|
|
SUBDIR+= pkg
|
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_PKGTOOLS} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= pkg_install
|
2006-11-26 14:36:34 +00:00
|
|
|
.endif
|
2008-09-21 22:02:26 +00:00
|
|
|
|
|
|
|
# XXX MK_TOOLCHAIN?
|
|
|
|
.if ${MK_PMC} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= pmcannotate
|
|
|
|
SUBDIR+= pmccontrol
|
|
|
|
SUBDIR+= pmcstat
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_PORTSNAP} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= portsnap
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_PPP} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= ppp
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_QUOTAS} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= edquota
|
|
|
|
SUBDIR+= quotaon
|
|
|
|
SUBDIR+= repquota
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_RCMDS} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= rwhod
|
2006-11-26 14:36:34 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_SENDMAIL} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= editmap
|
|
|
|
SUBDIR+= mailstats
|
|
|
|
SUBDIR+= makemap
|
|
|
|
SUBDIR+= praliases
|
|
|
|
SUBDIR+= sendmail
|
1998-04-15 16:37:42 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_TOOLCHAIN} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= config
|
|
|
|
SUBDIR+= crunch
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_USB} != "no"
|
2010-10-03 20:09:19 +00:00
|
|
|
SUBDIR+= uathload
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= uhsoctl
|
|
|
|
SUBDIR+= usbconfig
|
2011-04-03 22:36:40 +00:00
|
|
|
SUBDIR+= usbdump
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2011-06-17 21:30:21 +00:00
|
|
|
.if ${MK_UTMPX} != "no"
|
|
|
|
SUBDIR+= ac
|
|
|
|
SUBDIR+= lastlogin
|
2012-02-11 20:28:42 +00:00
|
|
|
SUBDIR+= utx
|
2011-06-17 21:30:21 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_WIRELESS} != "no"
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR+= ancontrol
|
|
|
|
SUBDIR+= wlandebug
|
|
|
|
SUBDIR+= wpa
|
2000-09-10 15:33:07 +00:00
|
|
|
.endif
|
|
|
|
|
2010-09-13 02:21:07 +00:00
|
|
|
.include <bsd.arch.inc.mk>
|
2002-10-18 15:38:39 +00:00
|
|
|
|
2010-09-13 02:21:07 +00:00
|
|
|
SUBDIR:= ${SUBDIR:O}
|
2001-08-02 15:47:03 +00:00
|
|
|
|
1994-05-26 05:23:31 +00:00
|
|
|
.include <bsd.subdir.mk>
|