1# @(#)Makefile 5.37 (Berkeley) 09/02/92 2 3SUBDIR= cat chmod csh date dd df echo ed expr hostname kill ln ls \ 4 mkdir mv ps pwd rcp rm rmail rmdir sh sleep stty sync tar test 5 6# Adb is VAX and Tahoe only. 7# Cp uses mmap, and is new-VM only. 8 9.if ${MACHINE} == "hp300" 10SUBDIR+=cp 11.elif ${MACHINE} == "i386" 12SUBDIR+=cp 13.elif ${MACHINE} == "mips" 14SUBDIR+=cp 15.elif ${MACHINE} == "sparc" 16SUBDIR+=cp 17.elif ${MACHINE} == "luna68k" 18SUBDIR+=cp 19.elif ${MACHINE} == "tahoe" 20SUBDIR+=adb 21.elif ${MACHINE} == "vax" 22SUBDIR+=adb 23.endif 24 25.include <bsd.subdir.mk> 26