freebsd-nq/usr.bin/Makefile

224 lines
2.4 KiB
Makefile
Raw Normal View History

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
# XXX MISSING: deroff diction graph learn plot
1998-03-20 12:34:21 +00:00
# spell spline struct xsend
# XXX broken: tconv
# XXX Use GNU versions: apropos bc dc diff grep ld man patch ptx uucp whatis
1994-08-08 01:13:35 +00:00
# Moved to secure: bdes
#
1998-08-30 20:28:50 +00:00
SUBDIR= apply \
at \
banner \
basename \
biff \
c89 \
calendar \
cap_mkdb \
chat \
checknr \
chflags \
chkey \
1998-08-30 20:28:50 +00:00
chpass \
cksum \
cmp \
col \
colcrt \
colldef \
colrm \
column \
comm \
compile_et \
compress \
cpp \
ctags \
cut \
dig \
1998-08-30 20:28:50 +00:00
dirname \
dnsquery \
1998-08-30 20:28:50 +00:00
du \
ee \
enigma \
1998-08-30 20:28:50 +00:00
env \
error \
expand \
false \
fetch \
file \
file2c \
find \
finger \
fmt \
fold \
fpr \
from \
fsplit \
1998-11-09 11:08:48 +00:00
fstat \
1998-08-30 20:28:50 +00:00
ftp \
gencat \
1998-10-14 03:41:25 +00:00
gensetdefs \
1998-08-30 20:28:50 +00:00
getopt \
global \
gprof \
1998-08-30 20:28:50 +00:00
head \
hexdump \
host \
1998-08-30 20:28:50 +00:00
id \
indent \
ipcrm \
ipcs \
join \
jot \
kdump \
key \
keyinfo \
keyinit \
keylogin \
keylogout \
killall \
ktrace \
kzip \
lam \
last \
lastcomm \
ldd \
leave \
1998-08-30 20:28:50 +00:00
lex \
limits \
locate \
lock \
lockf \
logger \
login \
logname \
look \
lorder \
lsvfs \
m4 \
mail \
make \
mesg \
minigzip \
mk_cmds \
1998-08-30 20:28:50 +00:00
mkdep \
mkfifo \
mklocale \
mkstr \
mktemp \
more \
msgs \
1998-10-03 10:59:57 +00:00
mt \
1998-08-30 20:28:50 +00:00
ncal \
netstat \
newkey \
nfsstat \
nice \
nohup \
objformat \
opieinfo \
opiekey \
opiepasswd \
pagesize \
passwd \
paste \
pr \
printenv \
printf \
quota \
rdist \
renice \
rev \
rlogin \
rpcgen \
rpcinfo \
rs \
rsh \
rup \
ruptime \
rusers \
rwall \
rwho \
script \
sed \
shar \
showmount \
1999-04-15 13:42:48 +00:00
sockstat \
1998-08-30 20:28:50 +00:00
soelim \
split \
su \
symorder \
1998-11-09 10:52:43 +00:00
systat \
1998-08-30 20:28:50 +00:00
tail \
talk \
tcopy \
tee \
tftp \
time \
tip \
top \
touch \
tput \
tr \
true \
truss \
1998-08-30 20:28:50 +00:00
tset \
tsort \
tty \
ul \
uname \
unexpand \
unifdef \
uniq \
units \
unvis \
users \
uudecode \
uuencode \
vacation \
vgrind \
vi \
vis \
1998-11-10 12:19:26 +00:00
vmstat \
1998-08-30 20:28:50 +00:00
w \
wall \
wc \
what \
whereis \
which \
who \
whois \
window \
write \
xargs \
xinstall \
xlint \
xstr \
yacc \
yes \
ypcat \
ypmatch \
ypwhich
1998-03-13 19:41:06 +00:00
.if defined(RELEASEDIR) || !exists(${.CURDIR}/../kerberosIV) || \
defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
# Releases need both this non-crypt telnet and the crypt telnet.
1998-03-13 19:41:06 +00:00
SUBDIR+=telnet
.endif
.if ${MACHINE_ARCH} == "i386"
# Things that don't compile on alpha or are aout specific:
1998-08-30 20:28:50 +00:00
SUBDIR+=ar \
brandelf \
gcore \
gprof4 \
nm \
ranlib \
sasc \
size \
strings \
1998-11-09 10:52:43 +00:00
strip
sigset_t change (part 5 of 5) ----------------------------- Most of the userland changes are in libc. For both the alpha and the i386 setjmp has been changed to accomodate for the new sigset_t. Internally, libc is mostly rewritten to use the new syscalls. The exception is in compat-43/sigcompat.c The POSIX thread library has also been rewritten to use the new sigset_t. Except, that it currently only handles NSIG signals instead of the maximum _SIG_MAXSIG. This should not be a problem because current applications don't use any signals higher than NSIG. There are version bumps for the following libraries: libdialog libreadline libc libc_r libedit libftpio libss These libraries either a) have one of the modified structures visible in the interface, or b) use sigset_t internally and may cause breakage if new binaries are used against libraries that don't have the sigset_t change. This not an immediate issue, but will be as soon as applications start using the new range to its fullest. NOTE: libncurses already had an version bump and has not been given one now. NOTE: doscmd is a real casualty and has been disconnected for the moment. Reconnection will eventually happen after doscmd has been fixed. I'm aware that being the last one to touch it, I'm automaticly promoted to being maintainer. According to good taste this means that I will receive a badge which either will be glued or mechanically stapled, drilled or otherwise violently forced onto me :-) NOTE: pcvt/vttest cannot be compiled with -traditional. The change cause sys/types to be included along the way which contains the const and volatile modifiers. I don't consider this a solution, but more a workaround.
1999-09-29 15:18:46 +00:00
# doscmd \
.endif
1994-05-27 12:33:43 +00:00
.include <bsd.subdir.mk>