1# @(#)Makefile 7.2 (Berkeley) 05/08/91 2 3BOOTS= boot 4STDBOOS= defboo.com anyboo.com 5DEFBOOS= defboo.hk defboo.hp defboo.ra defboo.up 6DEVBOOS= hkmboo.com hksboo.com hpmboo.com hpsboo.com \ 7 ramboo.com rasboo.com upmboo.com upsboo.com 8UTILS= format copy drtest 9# order is NOT random... 10OBJS= ${BOOTS} ${STDBOOS} ${DEVBOOS} ${UTILS} 11DRIVE= /dev/crl 12 13# build a boot console rl02 from a DEC console rl02 pack 14update: ${OBJS} 15 arff rmf ${DRIVE} ${OBJS} 16 -rm -f defboo.com 17 18defboo.com: 19 @echo You must copy one of ${DEFBOOS} to defboo.com. 20 @echo See installing and operating guide for details. 21 @/bin/false #force exits 22 23clean: 24 rm -f ${BOOTS} ${UTILS} defboo.com 25