Makefile revision 13134
1#	From: @(#)Makefile	8.3 (Berkeley) 1/7/94
2#	$Id: Makefile,v 1.64 1995/12/29 15:29:35 bde Exp $
3
4# XXX MISSING:		deroff diction graph learn plot
5#			spell spline struct units xsend
6# XXX Use GNU versions: apropos bc dc diff grep ld man patch ptx uucp whatis
7# Moved to secure: bdes
8#
9SUBDIR=	apply ar at banner basename biff cal calendar \
10	cap_mkdb chat checknr chflags chpass cksum col colcrt colldef colrm \
11	column comm compile_et compress cpp ctags cut devmenu \
12	dig dirname dnsquery du ee env error expand f2c false file file2c \
13	find finger fmt fold fpr from fsplit fstat ftp gcore gencat getopt \
14	gprof head hexdump host id indent ipcrm ipcs \
15	join jot kdump ktrace key keyinfo keyinit killall lam last \
16	lastcomm leave lex locate lock logger login logname lorder \
17	lsvfs m4 mail make mesg mkdep mkfifo mklocale mkstr mk_cmds \
18	modstat more msgs mt ncftp netstat nfsstat nice \
19	nm nohup pagesize passwd paste pr printenv \
20	printf quota ranlib rdist renice rev rlogin rpcgen \
21	rpcinfo rs rsh rup ruptime rusers rwall \
22	rwho script sed sgmlfmt sgmls shar showmount size soelim split \
23	strings	strip su symorder talk tconv tcopy tee tftp time \
24	tip tn3270 touch tput tr true tset tsort tty ul	uname \
25	unexpand unifdef uniq unvis users uudecode uuencode vacation \
26	vgrind vi vis w wall wc what whereis which who whois window \
27	write xargs xinstall xstr yacc yes ypcat ypmatch ypwhich
28SUBDIR+=gprof4
29
30.if !exists(../secure) || defined(NOSECURE)
31SUBDIR+=telnet
32.else
33SUBDIR+= ../secure/usr.bin/telnet
34.endif
35
36# Cmp, look and tail all use mmap, so new-VM only.
37# F77 and pascal are VAX/Tahoe only.
38.if	make(clean) || make(cleandir)
39# XXX Should have `f77', `pascal' & `vmstat.sparc' judging by the
40#     machine dependant lines, but we don't have them
41SUBDIR+=cmp kzip look sasc systat tail vmstat
42.elif	${MACHINE} == "hp300"
43SUBDIR+=cmp ld look systat tail vmstat
44.elif	${MACHINE} == "i386"
45SUBDIR+=cmp kzip look sasc systat tail vmstat
46# XXX Use gnu/usr.bin/ld for now
47.elif	${MACHINE} == "luna68k"
48SUBDIR+=cmp ld look systat tail vmstat
49.elif	${MACHINE} == "mips"
50SUBDIR+=cmp look systat tail vmstat
51.elif	${MACHINE} == "sparc"
52SUBDIR+=cmp ld look tail vmstat.sparc
53.elif	${MACHINE} == "tahoe"
54SUBDIR+=f77 pascal systat vmstat
55.elif	${MACHINE} == "vax"
56SUBDIR+=f77 pascal systat vmstat
57.endif
58
59.include <bsd.subdir.mk>
60