xref: /original-bsd/usr.bin/Makefile (revision 333da485)
1#	@(#)Makefile	8.3 (Berkeley) 01/07/94
2
3SUBDIR=	apply apropos ar at banner basename bc bdes biff cal calendar \
4	cap_mkdb checknr chflags chpass cksum col colcrt colrm column \
5	comm compress cpp ctags cut dc deroff diction diff dirname du \
6	env error ex expand false file find finger fmt fold fpr from \
7	fsplit fstat ftp gcore gprof graph grep head hexdump id indent \
8	join jot kdump ktrace lam last lastcomm learn leave locate \
9	lock logger login logname lorder m4 mail make man mesg mkdep \
10	mkfifo mklocale mkstr more msgs mt netstat nfsstat nice nm nohup \
11	pagesize passwd paste patch plot pr printenv printf ptx quota \
12	ranlib rdist renice rev rlogin rs rsh ruptime rwho sccs \
13	script sed shar showmount size soelim sort spell spline split \
14	strings strip struct su talk tcopy tee telnet tftp time tip \
15	tn3270 touch tput tr true tset tsort tty ul uname unexpand \
16	unifdef uniq units unvis users uucp uudecode uuencode vacation \
17	vgrind vis w wall wc what whatis whereis who whois window write \
18	xargs xinstall xsend xstr yacc yes
19
20# Cmp, look and tail all use mmap, so new-VM only.
21# F77 and pascal are VAX/Tahoe only.
22.if	${MACHINE} == "hp300"
23SUBDIR+=cmp ld look systat tail vmstat
24.elif	${MACHINE} == "i386"
25SUBDIR+=cmp ld look systat tail vmstat
26.elif	${MACHINE} == "luna68k"
27SUBDIR+=cmp ld look systat tail vmstat
28.elif	${MACHINE} == "mips"
29SUBDIR+=cmp look systat tail vmstat
30.elif	${MACHINE} == "sparc"
31SUBDIR+=cmp ld look tail vmstat.sparc
32.elif	${MACHINE} == "tahoe"
33SUBDIR+=f77 pascal systat vmstat
34.elif	${MACHINE} == "vax"
35SUBDIR+=f77 pascal systat vmstat
36.endif
37
38.include <bsd.subdir.mk>
39