1# @(#)Makefile 5.42 (Berkeley) 06/04/93 2 3# These programs are the only ones in src/old that we believe are worth 4# installing on the system. (Most of the other programs in src/old don't 5# even compile on 4.4BSD.) They are installed into /usr/old in case their 6# replacements prove to have compatibility or stability problems. 7 8SUBDIR= awk compact cpp crypt ed eqn lex make more ms od \ 9 pr refer roff sed sh sort sum symorder tar tbl test \ 10 tmac which yacc 11 12.if (${MACHINE} == "hp300") 13SUBDIR+=adb as.hpux ld 14.elif (${MACHINE} == "i386") 15SUBDIR+=ld 16.elif (${MACHINE} == "luna68k") 17SUBDIR+=ld 18.elif (${MACHINE} == "mips") 19SUBDIR+=ld 20.elif (${MACHINE} == "tahoe") 21SUBDIR+=adb as.tahoe dbx dlmpcc ld pcc 22.elif ${MACHINE} == "vax" 23SUBDIR+=adb arff as.vax dbx flcopy ld pcc rxformat talk tp 24.endif 25 26.include <bsd.subdir.mk> 27