Makefile revision 8106
1#	From: @(#)Makefile	8.3 (Berkeley) 1/7/94
2#	$Id: Makefile,v 1.47 1995/04/15 08:19:16 phk 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 dmenu du \
13	env error expand f2c false file file2c find finger fmt \
14	fold fpr from fsplit \
15	fstat ftp gcore gencat getopt gprof head hexdump host \
16	id indent ipcrm ipcs \
17	join jot kdump ktrace key keyinfo keyinit lam last \
18	lastcomm leave lex locate lock logger login logname lorder \
19	lsvfs m4 mail make mesg mkdep mkfifo mklocale mkstr mk_cmds \
20	modstat more msgs mt ncftp netstat nfsstat nice \
21	nm nohup pagesize passwd paste pr printenv printf quota ranlib rdist \
22	renice rev rlogin rpcgen rpcinfo rs rsh rup ruptime rusers rwall \
23	rwho script sed sgmls shar showmount size soelim split \
24	strings strip su symorder talk tconv tcopy tee telnet tftp time tip \
25	tn3270 touch tput tr true tset tsort tty ul uname unexpand \
26	unifdef uniq unvis users uudecode uuencode vacation \
27	vgrind vi vis w wall wc what whereis which who whois window \
28	write xargs xinstall xstr yacc yes ypcat ypmatch ypwhich
29
30# Cmp, look and tail all use mmap, so new-VM only.
31# F77 and pascal are VAX/Tahoe only.
32.if	make(clean) || make(cleandir)
33# XXX Should have `f77', `pascal' & `vmstat.sparc' judging by the
34#     machine dependant lines, but we don't have them
35SUBDIR+=cmp look systat tail vmstat
36.elif	${MACHINE} == "hp300"
37SUBDIR+=cmp ld look systat tail vmstat
38.elif	${MACHINE} == "i386"
39SUBDIR+=cmp kzip look systat tail vmstat
40# XXX Use gnu/usr.bin/ld for now
41.elif	${MACHINE} == "luna68k"
42SUBDIR+=cmp ld look systat tail vmstat
43.elif	${MACHINE} == "mips"
44SUBDIR+=cmp look systat tail vmstat
45.elif	${MACHINE} == "sparc"
46SUBDIR+=cmp ld look tail vmstat.sparc
47.elif	${MACHINE} == "tahoe"
48SUBDIR+=f77 pascal systat vmstat
49.elif	${MACHINE} == "vax"
50SUBDIR+=f77 pascal systat vmstat
51.endif
52
53.include <bsd.subdir.mk>
54