1994-09-22 01:26:58 +00:00
|
|
|
# From: @(#)Makefile 8.3 (Berkeley) 1/7/94
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2014-05-06 04:22:01 +00:00
|
|
|
.include <src.opts.mk>
|
2006-03-17 18:54:44 +00:00
|
|
|
|
1994-11-20 14:21:25 +00:00
|
|
|
# XXX MISSING: deroff diction graph learn plot
|
1998-03-20 12:34:21 +00:00
|
|
|
# spell spline struct xsend
|
2010-10-03 22:24:14 +00:00
|
|
|
# XXX Use GNU versions: diff ld patch
|
1994-08-08 01:13:35 +00:00
|
|
|
# Moved to secure: bdes
|
|
|
|
#
|
2002-11-10 01:01:58 +00:00
|
|
|
|
2002-07-16 22:16:05 +00:00
|
|
|
SUBDIR= alias \
|
|
|
|
apply \
|
2002-05-15 03:37:55 +00:00
|
|
|
asa \
|
2002-03-05 19:36:08 +00:00
|
|
|
awk \
|
1998-08-30 20:28:50 +00:00
|
|
|
banner \
|
|
|
|
basename \
|
2000-02-06 19:15:10 +00:00
|
|
|
brandelf \
|
2005-08-06 01:59:06 +00:00
|
|
|
bsdiff \
|
2001-06-21 19:18:16 +00:00
|
|
|
bzip2 \
|
2003-01-04 17:09:27 +00:00
|
|
|
bzip2recover \
|
1998-08-30 20:28:50 +00:00
|
|
|
cap_mkdb \
|
|
|
|
chat \
|
|
|
|
chpass \
|
|
|
|
cksum \
|
2010-06-09 19:57:20 +00:00
|
|
|
${_clang} \
|
1998-08-30 20:28:50 +00:00
|
|
|
cmp \
|
|
|
|
col \
|
|
|
|
colldef \
|
|
|
|
colrm \
|
|
|
|
column \
|
|
|
|
comm \
|
|
|
|
compress \
|
2008-03-02 07:52:26 +00:00
|
|
|
cpuset \
|
2002-05-02 07:46:36 +00:00
|
|
|
csplit \
|
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
|
|
|
ctlstat \
|
1998-08-30 20:28:50 +00:00
|
|
|
cut \
|
|
|
|
dirname \
|
|
|
|
du \
|
|
|
|
ee \
|
2002-12-30 10:01:26 +00:00
|
|
|
elf2aout \
|
2003-01-15 18:33:32 +00:00
|
|
|
elfdump \
|
1998-11-02 11:01:38 +00:00
|
|
|
enigma \
|
1998-08-30 20:28:50 +00:00
|
|
|
env \
|
|
|
|
expand \
|
|
|
|
false \
|
|
|
|
fetch \
|
|
|
|
file \
|
|
|
|
find \
|
|
|
|
finger \
|
2010-02-09 18:22:26 +00:00
|
|
|
fmt \
|
1998-08-30 20:28:50 +00:00
|
|
|
fold \
|
1998-11-09 11:08:48 +00:00
|
|
|
fstat \
|
2000-07-19 08:38:18 +00:00
|
|
|
fsync \
|
1998-08-30 20:28:50 +00:00
|
|
|
ftp \
|
2002-09-13 18:29:08 +00:00
|
|
|
gcore \
|
1998-08-30 20:28:50 +00:00
|
|
|
gencat \
|
2002-08-10 05:43:40 +00:00
|
|
|
getconf \
|
2006-05-04 08:44:44 +00:00
|
|
|
getent \
|
1998-08-30 20:28:50 +00:00
|
|
|
getopt \
|
2011-05-25 01:04:12 +00:00
|
|
|
grep \
|
2007-01-26 10:19:08 +00:00
|
|
|
gzip \
|
1998-08-30 20:28:50 +00:00
|
|
|
head \
|
|
|
|
hexdump \
|
Add the BSD-licensed Citrus iconv to the base system with default off
setting. It can be built by setting the WITH_ICONV knob. While this
knob is unset, the library part, the binaries, the header file and
the metadata files will not be built or installed so it makes no impact
on the system if left turned off.
This work is based on the iconv implementation in NetBSD but a great
number of improvements and feature additions have been included:
- Some utilities have been added. There is a conversion table generator,
which can compare conversion tables to reference data generated by
GNU libiconv. This helps ensuring conversion compatibility.
- UTF-16 surrogate support and some endianness issues have been fixed.
- The rather chaotic Makefiles to build metadata have been refactored
and cleaned up, now it is easy to read and it is also easier to add
support for new encodings.
- A bunch of new encodings and encoding aliases have been added.
- Support for 1->2, 1->3 and 1->4 mappings, which is needed for
transliterating with flying accents as GNU does, like "u.
- Lots of warnings have been fixed, the major part of the code is
now WARNS=6 clean.
- New section 1 and section 5 manual pages have been added.
- Some GNU-specific calls have been implemented:
iconvlist(), iconvctl(), iconv_canonicalize(), iconv_open_into()
- Support for GNU's //IGNORE suffix has been added.
- The "-" argument for stdin is now recognized in iconv(1) as per POSIX.
- The Big5 conversion module has been fixed.
- The iconv.h header files is supposed to be compatible with the
GNU version, i.e. sources should build with base iconv.h and
GNU libiconv. It also includes a macro magic to deal with the
char ** and const char ** incompatibility.
- GNU compatibility: "" or "char" means the current local
encoding in use
- Various cleanups and style(9) fixes.
Approved by: delphij (mentor)
Obtained from: The NetBSD Project
Sponsored by: Google Summer of Code 2009
2011-02-25 00:04:39 +00:00
|
|
|
${_iconv} \
|
1998-08-30 20:28:50 +00:00
|
|
|
id \
|
|
|
|
ipcrm \
|
|
|
|
ipcs \
|
2013-09-14 15:29:06 +00:00
|
|
|
iscsictl \
|
1998-08-30 20:28:50 +00:00
|
|
|
join \
|
|
|
|
jot \
|
2012-09-12 14:58:07 +00:00
|
|
|
${_kdump} \
|
1998-08-30 20:28:50 +00:00
|
|
|
keylogin \
|
|
|
|
keylogout \
|
|
|
|
killall \
|
|
|
|
ktrace \
|
2002-04-02 04:28:57 +00:00
|
|
|
ktrdump \
|
1998-08-30 20:28:50 +00:00
|
|
|
lam \
|
|
|
|
lastcomm \
|
1998-09-16 09:32:29 +00:00
|
|
|
ldd \
|
1998-09-24 10:28:28 +00:00
|
|
|
leave \
|
2000-05-22 10:00:00 +00:00
|
|
|
less \
|
|
|
|
lessecho \
|
|
|
|
lesskey \
|
1998-08-30 20:28:50 +00:00
|
|
|
limits \
|
2003-06-22 08:41:03 +00:00
|
|
|
locale \
|
1998-08-30 20:28:50 +00:00
|
|
|
lock \
|
|
|
|
lockf \
|
|
|
|
logger \
|
|
|
|
login \
|
2004-03-06 21:57:47 +00:00
|
|
|
logins \
|
1998-08-30 20:28:50 +00:00
|
|
|
logname \
|
|
|
|
look \
|
|
|
|
lorder \
|
|
|
|
lsvfs \
|
2010-05-10 06:59:50 +00:00
|
|
|
lzmainfo \
|
1998-08-30 20:28:50 +00:00
|
|
|
m4 \
|
2010-05-19 23:56:26 +00:00
|
|
|
${_makewhatis} \
|
2010-10-03 22:24:14 +00:00
|
|
|
${_man} \
|
2012-10-20 10:06:38 +00:00
|
|
|
mandoc \
|
1998-08-30 20:28:50 +00:00
|
|
|
mesg \
|
1998-09-24 10:28:28 +00:00
|
|
|
minigzip \
|
2007-12-20 16:40:25 +00:00
|
|
|
ministat \
|
Add the BSD-licensed Citrus iconv to the base system with default off
setting. It can be built by setting the WITH_ICONV knob. While this
knob is unset, the library part, the binaries, the header file and
the metadata files will not be built or installed so it makes no impact
on the system if left turned off.
This work is based on the iconv implementation in NetBSD but a great
number of improvements and feature additions have been included:
- Some utilities have been added. There is a conversion table generator,
which can compare conversion tables to reference data generated by
GNU libiconv. This helps ensuring conversion compatibility.
- UTF-16 surrogate support and some endianness issues have been fixed.
- The rather chaotic Makefiles to build metadata have been refactored
and cleaned up, now it is easy to read and it is also easier to add
support for new encodings.
- A bunch of new encodings and encoding aliases have been added.
- Support for 1->2, 1->3 and 1->4 mappings, which is needed for
transliterating with flying accents as GNU does, like "u.
- Lots of warnings have been fixed, the major part of the code is
now WARNS=6 clean.
- New section 1 and section 5 manual pages have been added.
- Some GNU-specific calls have been implemented:
iconvlist(), iconvctl(), iconv_canonicalize(), iconv_open_into()
- Support for GNU's //IGNORE suffix has been added.
- The "-" argument for stdin is now recognized in iconv(1) as per POSIX.
- The Big5 conversion module has been fixed.
- The iconv.h header files is supposed to be compatible with the
GNU version, i.e. sources should build with base iconv.h and
GNU libiconv. It also includes a macro magic to deal with the
char ** and const char ** incompatibility.
- GNU compatibility: "" or "char" means the current local
encoding in use
- Various cleanups and style(9) fixes.
Approved by: delphij (mentor)
Obtained from: The NetBSD Project
Sponsored by: Google Summer of Code 2009
2011-02-25 00:04:39 +00:00
|
|
|
${_mkcsmapper} \
|
1998-08-30 20:28:50 +00:00
|
|
|
mkdep \
|
Add the BSD-licensed Citrus iconv to the base system with default off
setting. It can be built by setting the WITH_ICONV knob. While this
knob is unset, the library part, the binaries, the header file and
the metadata files will not be built or installed so it makes no impact
on the system if left turned off.
This work is based on the iconv implementation in NetBSD but a great
number of improvements and feature additions have been included:
- Some utilities have been added. There is a conversion table generator,
which can compare conversion tables to reference data generated by
GNU libiconv. This helps ensuring conversion compatibility.
- UTF-16 surrogate support and some endianness issues have been fixed.
- The rather chaotic Makefiles to build metadata have been refactored
and cleaned up, now it is easy to read and it is also easier to add
support for new encodings.
- A bunch of new encodings and encoding aliases have been added.
- Support for 1->2, 1->3 and 1->4 mappings, which is needed for
transliterating with flying accents as GNU does, like "u.
- Lots of warnings have been fixed, the major part of the code is
now WARNS=6 clean.
- New section 1 and section 5 manual pages have been added.
- Some GNU-specific calls have been implemented:
iconvlist(), iconvctl(), iconv_canonicalize(), iconv_open_into()
- Support for GNU's //IGNORE suffix has been added.
- The "-" argument for stdin is now recognized in iconv(1) as per POSIX.
- The Big5 conversion module has been fixed.
- The iconv.h header files is supposed to be compatible with the
GNU version, i.e. sources should build with base iconv.h and
GNU libiconv. It also includes a macro magic to deal with the
char ** and const char ** incompatibility.
- GNU compatibility: "" or "char" means the current local
encoding in use
- Various cleanups and style(9) fixes.
Approved by: delphij (mentor)
Obtained from: The NetBSD Project
Sponsored by: Google Summer of Code 2009
2011-02-25 00:04:39 +00:00
|
|
|
${_mkesdb} \
|
1998-08-30 20:28:50 +00:00
|
|
|
mkfifo \
|
2014-03-29 19:04:38 +00:00
|
|
|
mkimg \
|
1998-08-30 20:28:50 +00:00
|
|
|
mklocale \
|
|
|
|
mktemp \
|
2012-05-24 16:11:51 +00:00
|
|
|
mkulzma \
|
2005-05-11 17:02:38 +00:00
|
|
|
mkuzip \
|
1998-10-03 10:59:57 +00:00
|
|
|
mt \
|
1998-08-30 20:28:50 +00:00
|
|
|
ncal \
|
|
|
|
netstat \
|
2002-05-28 05:07:42 +00:00
|
|
|
newgrp \
|
1998-08-30 20:28:50 +00:00
|
|
|
nfsstat \
|
|
|
|
nice \
|
2001-05-04 17:25:23 +00:00
|
|
|
nl \
|
1998-08-30 20:28:50 +00:00
|
|
|
nohup \
|
|
|
|
opieinfo \
|
|
|
|
opiekey \
|
|
|
|
opiepasswd \
|
|
|
|
pagesize \
|
|
|
|
passwd \
|
|
|
|
paste \
|
2013-01-29 17:03:18 +00:00
|
|
|
patch \
|
2002-05-22 10:32:24 +00:00
|
|
|
pathchk \
|
2009-05-19 17:40:22 +00:00
|
|
|
perror \
|
1998-08-30 20:28:50 +00:00
|
|
|
pr \
|
|
|
|
printenv \
|
|
|
|
printf \
|
2007-12-02 23:32:03 +00:00
|
|
|
procstat \
|
2013-09-19 18:53:42 +00:00
|
|
|
protect \
|
2011-03-30 18:27:52 +00:00
|
|
|
rctl \
|
1998-08-30 20:28:50 +00:00
|
|
|
renice \
|
|
|
|
rev \
|
2009-06-15 21:52:27 +00:00
|
|
|
revoke \
|
1998-08-30 20:28:50 +00:00
|
|
|
rpcinfo \
|
|
|
|
rs \
|
|
|
|
rup \
|
|
|
|
rusers \
|
|
|
|
rwall \
|
|
|
|
script \
|
|
|
|
sed \
|
2014-06-17 12:59:03 +00:00
|
|
|
send-pr \
|
2010-02-19 23:54:12 +00:00
|
|
|
seq \
|
1998-08-30 20:28:50 +00:00
|
|
|
shar \
|
|
|
|
showmount \
|
1999-04-15 13:42:48 +00:00
|
|
|
sockstat \
|
2012-05-11 12:47:21 +00:00
|
|
|
sort \
|
1998-08-30 20:28:50 +00:00
|
|
|
split \
|
2002-06-06 19:36:51 +00:00
|
|
|
stat \
|
2012-04-28 20:52:20 +00:00
|
|
|
stdbuf \
|
1998-08-30 20:28:50 +00:00
|
|
|
su \
|
1998-11-09 10:52:43 +00:00
|
|
|
systat \
|
2002-05-21 02:36:12 +00:00
|
|
|
tabs \
|
1998-08-30 20:28:50 +00:00
|
|
|
tail \
|
|
|
|
talk \
|
2004-04-06 17:04:38 +00:00
|
|
|
tar \
|
1998-08-30 20:28:50 +00:00
|
|
|
tcopy \
|
|
|
|
tee \
|
2013-11-08 14:33:41 +00:00
|
|
|
${_tests} \
|
1998-08-30 20:28:50 +00:00
|
|
|
tftp \
|
|
|
|
time \
|
2014-07-16 09:55:36 +00:00
|
|
|
timeout \
|
2001-12-20 14:27:23 +00:00
|
|
|
tip \
|
1998-08-30 20:28:50 +00:00
|
|
|
top \
|
|
|
|
touch \
|
|
|
|
tput \
|
|
|
|
tr \
|
|
|
|
true \
|
2000-07-18 17:03:58 +00:00
|
|
|
truncate \
|
2012-09-12 14:58:07 +00:00
|
|
|
${_truss} \
|
1998-08-30 20:28:50 +00:00
|
|
|
tset \
|
|
|
|
tsort \
|
|
|
|
tty \
|
|
|
|
uname \
|
|
|
|
unexpand \
|
|
|
|
uniq \
|
2009-12-03 18:02:55 +00:00
|
|
|
unzip \
|
1998-08-30 20:28:50 +00:00
|
|
|
units \
|
|
|
|
unvis \
|
|
|
|
uudecode \
|
|
|
|
uuencode \
|
|
|
|
vis \
|
1998-11-10 12:19:26 +00:00
|
|
|
vmstat \
|
1998-08-30 20:28:50 +00:00
|
|
|
w \
|
|
|
|
wall \
|
|
|
|
wc \
|
|
|
|
what \
|
2002-07-03 19:23:50 +00:00
|
|
|
whereis \
|
1998-08-30 20:28:50 +00:00
|
|
|
which \
|
|
|
|
whois \
|
|
|
|
write \
|
|
|
|
xargs \
|
|
|
|
xinstall \
|
2002-11-10 01:01:58 +00:00
|
|
|
${_xlint} \
|
2008-09-21 22:02:26 +00:00
|
|
|
${_xstr} \
|
2010-05-10 06:59:50 +00:00
|
|
|
xz \
|
|
|
|
xzdec \
|
2003-08-29 10:35:01 +00:00
|
|
|
${_yacc} \
|
1998-08-30 20:28:50 +00:00
|
|
|
yes \
|
2004-11-13 20:40:32 +00:00
|
|
|
${_ypcat} \
|
|
|
|
${_ypmatch} \
|
|
|
|
${_ypwhich}
|
1998-03-13 19:41:06 +00:00
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
|
|
|
|
.if ${MK_AT} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= at
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
2012-10-22 01:18:41 +00:00
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_ATM} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= atm
|
2004-01-16 15:23:19 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_BLUETOOTH} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= bluetooth
|
2004-07-07 22:48:30 +00:00
|
|
|
.endif
|
|
|
|
|
2008-06-16 05:48:15 +00:00
|
|
|
.if ${MK_BSD_CPIO} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= cpio
|
2008-06-16 05:48:15 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_CALENDAR} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= calendar
|
2005-08-03 09:27:01 +00:00
|
|
|
.endif
|
|
|
|
|
2010-06-09 19:57:20 +00:00
|
|
|
.if ${MK_CLANG} != "no"
|
|
|
|
_clang= clang
|
|
|
|
.endif
|
|
|
|
|
2014-05-10 16:37:39 +00:00
|
|
|
.if ${MK_FMAKE} != "no"
|
|
|
|
SUBDIR+= make
|
|
|
|
.endif
|
|
|
|
|
2014-01-29 05:00:04 +00:00
|
|
|
.if ${MK_GPL_DTC} != "yes"
|
|
|
|
SUBDIR+= dtc
|
|
|
|
.endif
|
|
|
|
|
2012-07-18 07:07:54 +00:00
|
|
|
.if ${MK_GROFF} != "no"
|
|
|
|
SUBDIR+= vgrind
|
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_HESIOD} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= hesinfo
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
Add the BSD-licensed Citrus iconv to the base system with default off
setting. It can be built by setting the WITH_ICONV knob. While this
knob is unset, the library part, the binaries, the header file and
the metadata files will not be built or installed so it makes no impact
on the system if left turned off.
This work is based on the iconv implementation in NetBSD but a great
number of improvements and feature additions have been included:
- Some utilities have been added. There is a conversion table generator,
which can compare conversion tables to reference data generated by
GNU libiconv. This helps ensuring conversion compatibility.
- UTF-16 surrogate support and some endianness issues have been fixed.
- The rather chaotic Makefiles to build metadata have been refactored
and cleaned up, now it is easy to read and it is also easier to add
support for new encodings.
- A bunch of new encodings and encoding aliases have been added.
- Support for 1->2, 1->3 and 1->4 mappings, which is needed for
transliterating with flying accents as GNU does, like "u.
- Lots of warnings have been fixed, the major part of the code is
now WARNS=6 clean.
- New section 1 and section 5 manual pages have been added.
- Some GNU-specific calls have been implemented:
iconvlist(), iconvctl(), iconv_canonicalize(), iconv_open_into()
- Support for GNU's //IGNORE suffix has been added.
- The "-" argument for stdin is now recognized in iconv(1) as per POSIX.
- The Big5 conversion module has been fixed.
- The iconv.h header files is supposed to be compatible with the
GNU version, i.e. sources should build with base iconv.h and
GNU libiconv. It also includes a macro magic to deal with the
char ** and const char ** incompatibility.
- GNU compatibility: "" or "char" means the current local
encoding in use
- Various cleanups and style(9) fixes.
Approved by: delphij (mentor)
Obtained from: The NetBSD Project
Sponsored by: Google Summer of Code 2009
2011-02-25 00:04:39 +00:00
|
|
|
.if ${MK_ICONV} != "no"
|
|
|
|
_iconv= iconv
|
|
|
|
_mkcsmapper= mkcsmapper
|
|
|
|
_mkesdb= mkesdb
|
|
|
|
.endif
|
|
|
|
|
2012-09-12 14:58:07 +00:00
|
|
|
.if ${MK_KDUMP} != "no"
|
|
|
|
SUBDIR+= kdump
|
|
|
|
SUBDIR+= truss
|
|
|
|
.endif
|
|
|
|
|
2012-07-18 07:07:54 +00:00
|
|
|
.if ${MK_KERBEROS_SUPPORT} != "no"
|
|
|
|
SUBDIR+= compile_et
|
2011-12-24 12:16:38 +00:00
|
|
|
.endif
|
|
|
|
|
2013-09-08 20:48:23 +00:00
|
|
|
.if ${MK_LDNS_UTILS} != "no"
|
2013-09-22 20:30:55 +00:00
|
|
|
SUBDIR+= drill
|
2013-09-08 20:48:23 +00:00
|
|
|
SUBDIR+= host
|
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_LOCATE} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= locate
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
# XXX msgs?
|
|
|
|
.if ${MK_MAIL} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= biff
|
|
|
|
SUBDIR+= from
|
|
|
|
SUBDIR+= mail
|
|
|
|
SUBDIR+= msgs
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MK_MAKE} != "no"
|
2012-10-06 19:19:21 +00:00
|
|
|
SUBDIR+= bmake
|
|
|
|
.endif
|
2005-08-06 06:56:39 +00:00
|
|
|
|
2010-05-19 23:56:26 +00:00
|
|
|
.if ${MK_MAN_UTILS} != "no"
|
2012-07-18 07:07:54 +00:00
|
|
|
SUBDIR+= catman
|
2010-05-19 23:56:26 +00:00
|
|
|
_makewhatis= makewhatis
|
2010-10-03 22:24:14 +00:00
|
|
|
_man= man
|
2010-05-19 23:56:26 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_NETCAT} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= nc
|
2005-02-13 07:12:23 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_NIS} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= ypcat
|
|
|
|
SUBDIR+= ypmatch
|
|
|
|
SUBDIR+= ypwhich
|
2004-11-13 20:40:32 +00:00
|
|
|
.endif
|
|
|
|
|
2013-04-28 17:58:11 +00:00
|
|
|
.if ${MK_OPENSSH} != "no"
|
|
|
|
SUBDIR+= ssh-copy-id
|
|
|
|
.endif
|
|
|
|
|
2012-07-18 07:07:54 +00:00
|
|
|
.if ${MK_OPENSSL} != "no"
|
|
|
|
SUBDIR+= bc
|
|
|
|
SUBDIR+= chkey
|
|
|
|
SUBDIR+= dc
|
|
|
|
SUBDIR+= newkey
|
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_QUOTAS} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= quota
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_RCMDS} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= rlogin
|
|
|
|
SUBDIR+= rsh
|
|
|
|
SUBDIR+= ruptime
|
|
|
|
SUBDIR+= rwho
|
2005-03-02 11:53:22 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_SENDMAIL} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= vacation
|
2004-01-16 15:23:19 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_TELNET} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= telnet
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2013-11-08 14:24:47 +00:00
|
|
|
.if ${MK_TESTS} != "no"
|
2013-11-08 14:33:41 +00:00
|
|
|
_tests= tests
|
2013-11-08 14:24:47 +00:00
|
|
|
.endif
|
|
|
|
|
2008-09-21 22:02:26 +00:00
|
|
|
.if ${MK_TEXTPROC} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= checknr
|
|
|
|
SUBDIR+= colcrt
|
|
|
|
SUBDIR+= ul
|
2008-09-21 22:02:26 +00:00
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_TOOLCHAIN} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= ar
|
|
|
|
SUBDIR+= c89
|
|
|
|
SUBDIR+= c99
|
|
|
|
SUBDIR+= ctags
|
|
|
|
SUBDIR+= file2c
|
|
|
|
SUBDIR+= gprof
|
|
|
|
SUBDIR+= indent
|
|
|
|
SUBDIR+= lex
|
|
|
|
SUBDIR+= mkstr
|
|
|
|
SUBDIR+= rpcgen
|
|
|
|
SUBDIR+= unifdef
|
|
|
|
SUBDIR+= xlint
|
|
|
|
SUBDIR+= xstr
|
|
|
|
SUBDIR+= yacc
|
2001-11-11 05:26:59 +00:00
|
|
|
.endif
|
|
|
|
|
2014-04-24 23:17:40 +00:00
|
|
|
.if ${MK_VI} != "no"
|
|
|
|
SUBDIR+= vi
|
|
|
|
.endif
|
|
|
|
|
2014-06-30 00:20:12 +00:00
|
|
|
.if ${MK_VT} != "no"
|
2014-06-10 18:29:45 +00:00
|
|
|
SUBDIR+= vtfontcvt
|
|
|
|
.endif
|
|
|
|
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_USB} != "no"
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR+= usbhidaction
|
|
|
|
SUBDIR+= usbhidctl
|
2001-08-02 15:47:03 +00:00
|
|
|
.endif
|
|
|
|
|
2011-06-17 21:30:21 +00:00
|
|
|
.if ${MK_UTMPX} != "no"
|
|
|
|
SUBDIR+= last
|
|
|
|
SUBDIR+= users
|
|
|
|
SUBDIR+= who
|
|
|
|
.endif
|
|
|
|
|
2013-06-18 02:53:45 +00:00
|
|
|
.if ${MK_SVN} == "yes" || ${MK_SVNLITE} == "yes"
|
|
|
|
SUBDIR+= svn
|
|
|
|
.endif
|
|
|
|
|
2010-09-13 15:30:09 +00:00
|
|
|
.include <bsd.arch.inc.mk>
|
2005-09-19 08:13:43 +00:00
|
|
|
|
2010-09-13 15:30:09 +00:00
|
|
|
SUBDIR:= ${SUBDIR:O}
|
2010-01-25 18:52:47 +00:00
|
|
|
|
2014-03-26 22:30:38 +00:00
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
.include <bsd.subdir.mk>
|