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