head     2.4;
access   ;
symbols  ;
locks    ;
comment  @# @;


2.4
date     90.05.18.12.18.27;  author vak;  state Exp;
branches ;
next     2.3;

2.3
date     90.04.06.02.42.55;  author vak;  state Exp;
branches ;
next     2.2;

2.2
date     90.02.16.21.47.44;  author vak;  state Exp;
branches ;
next     2.1;

2.1
date     90.02.07.17.34.10;  author vak;  state Exp;
branches ;
next     1.1;

1.1
date     90.02.07.12.35.44;  author vak;  state Exp;
branches ;
next     ;


desc
@
@


2.4
log
@*** empty log message ***
@
text
@SHELL   = /bin/sh
INSTALL = /usr/SVSB
LIB     = $(INSTALL)/lib
INCPATH = -I. -I../h
COPTS   = ${INCPATH} -DSTANDALONE -L
LDFLAGS = -s
RELOC   = 0x30001
BASADDR = 1
CC      = vcc
LD      = vld
AS      = vas
AR      = var
RANLIB  = vranlib
TMAKER  = vtestmaker
TDIS    = vtestdis
DIS     = vdis

LIBSA   = libsa.a

BOOTSRCS = boot.c conf.c bootxx.c confxx.c prf.c sys.c srt0.c\
	machdep.c dos.c hd.c hp.c mt.c scio.c bcio.c mem.c

SASRCS   = hdformat.c hpformat.c hello.c fdisk.c copy.c bctest.c uctest.c

DRIVERS = dos.o hd.o hp.o mt.o scio.o bcio.o mem.o

ALL     = boot.tst hdformat.sa hpformat.sa hello.sa fdisk.sa copy.sa\
	compare.sa uctest.sa bctest.sa

all:    ${ALL}

floppy: all
	doscp boot.tst *.sa a:/tester

hdformat.sa hpformat.sa hello.sa fdisk.sa copy.sa: $(LIBSA) srt0.o
bctest.sa uctest.sa: $(LIBSA) srt0.o

boot.tst: boot
	vtestmaker -a1 boot -o boot.tst

boot.dis: boot.tst
	vtestdis boot.tst > boot.dis

${LIBSA}: sys.o conf.o ${DRIVERS} prf.o machdep.o
	$(AR) cr ${LIBSA} $?
	$(RANLIB) ${LIBSA}

srt0.o: srt0.c
	$(CC) -A -c -DRELOC=${RELOC} ${COPTS} srt0.c

relsrt0.o: srt0.c
	cp srt0.c relsrt0.c
	$(CC) -A -c -DRELOC=${RELOC} -DREL ${COPTS} relsrt0.c
	rm -f relsrt0.c

boot:	boot.o relsrt0.o bootconf.o ${LIBSA}
	$(LD) -C -T${RELOC} -o boot relsrt0.o boot.o bootconf.o ${LIBSA} -ltst

bootconf.o: conf.o
	cp conf.c bootconf.c
	$(CC) -c ${COPTS} -DBOOT bootconf.c
	rm -f bootconf.c

clean:
	rm -f *.o *.i *.b *.a *.out *.tst *.dis *.sa boot core bootconf.c relsrt0.c

lint:
	lint ${COPTS} -hxbn boot.c ${BOOTSRCS} |\
	    grep -v 'possible pointer alignment' |\
	    grep -v 'struct/union .* never defined'

install: srt0.o $(LIBSA) boot.tst
	cp srt0.o ${INSTALL}/lib
	cp $(LIBSA) ${INSTALL}/lib
	$(RANLIB) ${INSTALL}/lib/$(LIBSA)

depend:
	$(CC) -M ${COPTS} ${BOOTSRCS} ${SASRCS} | awk ' { if ($$1 != prev)\
		{ print rec; rec = $$0; prev = $$1; }\
		else { if (length(rec $$2) > 78) { print rec; rec = $$0; }\
		else rec = rec " " $$2 } }\
		END { print rec } ' > makedep
	echo '/^# DO NOT DELETE THIS LINE/+2,$$d' >eddep
	echo '$$r makedep' >>eddep
	echo 'w' >>eddep
	cp Makefile Makefile.bak
	ed - Makefile < eddep
	rm eddep makedep
	echo >> Makefile
	echo '# DEPENDENCIES MUST END AT END OF FILE' >> Makefile
	echo '# IF YOU PUT STUFF HERE IT WILL GO AWAY' >> Makefile
	echo '# see make depend above' >> Makefile

.c.o:
	$(CC) $(COPTS) -c $<

.c.s:
	$(CC) $(COPTS) -S $<

.c.i:
	$(CC) -P $(COPTS) $<

.c.s:
	$(CC) -S $(COPTS) $<

.c.tst:
	$(CC) -c $(COPTS) $<
	$(LD) $(LDFLAGS) -C -T1 srt0.o $*.o -ltst -o $*.out
	$(TMAKER) -a1 $*.out -o $*.tst
	-rm -f $*.o $*.out

.c.out:
	$(CC) -c $(COPTS) $<
	$(LD) $(LDFLAGS) -C -T$(RELOC) srt0.o $*.o -ltst -o $*.out
	-rm -f $*.o

.c.sa:
	$(CC) -c $(COPTS) $<
	$(LD) $(LDFLAGS) -C -T$(BASADDR) srt0.o $*.o $(LIBSA) -ltst -o $*.sa
	-rm -f $*.o

.tst.dis:
	$(TDIS) $< > $@@

.sa.dis:
	$(DIS) $< > $@@

.SUFFIXES: .c .o .s .i .tst .out .dis .sa

# DO NOT DELETE THIS LINE
# make depend uses it

boot.o: boot.c ./param.h ./machparam.h ./types.h ./dir.h ../h/a.out.h ./svsb.h
conf.o: conf.c ./param.h ./machparam.h ./types.h ./inode.h ./fs.h ./saio.h
conf.o: ./svsb.h
bootxx.o: bootxx.c ./param.h ./machparam.h ./types.h ./dir.h ../h/a.out.h
bootxx.o: ./svsb.h
confxx.o: confxx.c ./param.h ./machparam.h ./types.h ./inode.h ./fs.h ./saio.h
confxx.o: ./svsb.h
prf.o: prf.c ./param.h ./machparam.h ./types.h ./svsb.h
sys.o: sys.c ./param.h ./machparam.h ./types.h ./inode.h ./fs.h ./dir.h
sys.o: ./saio.h ./svsb.h
srt0.o: srt0.c
machdep.o: machdep.c
dos.o: dos.c ./dosio.h ./svsb.h
hd.o: hd.c ./param.h ./machparam.h ./types.h ./inode.h ./fs.h ./saio.h ./scio.h
hd.o: ./svsb.h
hp.o: hp.c ./param.h ./machparam.h ./types.h ./inode.h ./fs.h ./saio.h ./scio.h
hp.o: ./svsb.h
mt.o: mt.c ./param.h ./machparam.h ./types.h ./inode.h ./fs.h ./saio.h ./scio.h
mt.o: ./svsb.h ./mtreg.h
scio.o: scio.c ./scio.h
bcio.o: bcio.c ./bcio.h
mem.o: mem.c ./param.h ./machparam.h ./types.h ./inode.h ./fs.h ./saio.h
mem.o: ./svsb.h
hdformat.o: hdformat.c ./vollab.h ./svsb.h ./scio.h
hpformat.o: hpformat.c ./svsb.h ./scio.h
hello.o: hello.c
fdisk.o: fdisk.c ./vollab.h ./svsb.h
copy.o: copy.c ./svsb.h
bctest.o: bctest.c ./svsb.h ./bcio.h
uctest.o: uctest.c ./svsb.h ./ucio.h

# DEPENDENCIES MUST END AT END OF FILE
# IF YOU PUT STUFF HERE IT WILL GO AWAY
# see make depend above
@


2.3
log
@*** empty log message ***
@
text
@d5 1
a5 1
COPTS   = ${INCPATH} -DSTANDALONE
d8 1
a8 1
BASADDR = 0x20000
d20 2
a21 2
SRCS    = boot.c conf.c bootxx.c confxx.c prf.c sys.c srt0.c\
	machdep.c dos.c hd.c mt.c scio.c
d23 1
a23 1
DRIVERS = dos.o hd.o mt.o scio.o
d25 1
a25 1
ALL     = boot.tst format.sa hello.sa fdisk.sa copy.sa
d27 3
d35 2
a36 1
format.sa hello.sa fdisk.sa copy.sa: $(LIBSA) srt0.o
d49 1
a49 1
	$(CC) -M -c -DRELOC=${RELOC} ${COPTS} srt0.c
d53 1
a53 1
	$(CC) -M -c -DRELOC=${RELOC} -DREL ${COPTS} relsrt0.c
d68 1
a68 1
	lint ${COPTS} -hxbn boot.c ${SRCS} |\
d78 2
a79 3
	for i in ${SRCS}; do\
	    $(CC) -M ${INCPATH} $$i |\
	    awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; }\
d82 1
a82 1
		END { print rec } ' >> makedep; done
d89 1
d119 1
a119 1
	$(LD) $(LDFLAGS) -T$(BASADDR) srt0.o $*.o $(LIBSA) -ltst -o $*.sa
d130 37
a166 15
###
boot.o:         param.h types.h dir.h svsb.h
bootxx.o:       saio.h
conf.o:         param.h types.h inode.h fs.h saio.h svsb.h
confxx.o:       saio.h
copy.o:         svsb.h
dos.o:          dosio.h svsb.h
fdisk.o:        vollab.h svsb.h
format.o:       vollab.h svsb.h scio.h
hd.o:           param.h types.h inode.h fs.h saio.h scio.h svsb.h
hd.o:           param.h types.h inode.h fs.h saio.h scio.h svsb.h
mt.o:           param.h types.h inode.h fs.h saio.h scio.h svsb.h mtreg.h
prf.o:          param.h types.h svsb.h
scio.o:         scio.h
sys.o:          param.h types.h inode.h fs.h dir.h saio.h svsb.h
@


2.2
log
@*** empty log message ***
@
text
@d1 3
a3 1
DESTDIR = /usr/SVSB
d5 4
a8 2
CFLAGS  = ${INCPATH} -DSTANDALONE ${COPTS}
RELOC   = 0x20001
d14 3
d20 2
a21 1
SRCS    = boot.c conf.c bootxx.c confxx.c prf.c sys.c srt0.c
d23 1
a23 1
DUMMIES = bootxx.c confxx.c
d25 1
a25 1
DRIVERS = dos.o
d27 1
a27 1
ALL     = boot
d29 6
a34 1
all:    ${ALL}
d36 2
d40 2
a41 2
${LIBSA}: sys.o conf.o ${DRIVERS} prf.o
	$(AR) crv ${LIBSA} $?
d45 1
a45 1
	$(CC) -E -DRELOC=${RELOC} ${COPTS} srt0.c | $(AS) -o srt0.o
d48 3
a50 1
	$(CC) -E -DRELOC=${RELOC} -DREL ${COPTS} srt0.c | $(AS) -o relsrt0.o
d61 1
a61 1
	rm -f *.o *.i *.b *.a *.out *.tst *.dis boot core bootconf.c
d68 4
a71 4
install: srt0.o $(LIBSA)
	cp srt0.o ${DESTDIR}/lib
	cp $(LIBSA) ${DESTDIR}/lib
	$(RANLIB) ${DESTDIR}/lib/$(LIBSA)
d74 1
a74 1
	for i in ${SRCS} ${DUMMIES}; do\
d90 2
a91 1
# DO NOT DELETE THIS LINE -- make depend uses it
d93 2
a94 1
dos.o:  dosio.h
d96 45
a140 3
# DEPENDENCIES MUST END AT END OF FILE
# IF YOU PUT STUFF HERE IT WILL GO AWAY
# see make depend above
@


2.1
log
@Raw version for Elbrus-B
@
text
@d1 1
a1 1
DESTDIR = /usr/SVSB/boot
d4 1
a4 1
RELOC   = 0x60001
d13 1
a13 2
SRCS    = boot.c bootxx.c conf.c\
	confhpup.c confxx.c prf.c srt0.c sys.c
d17 1
a17 1
DRIVERS =
a28 2
# startups

a34 2
# bootable from floppy or real disks

a42 11
copy:	copy.o srt0.o conf.o ${LIBSA}
	$(LD) -N -o copy srt0.o copy.o conf.o ${LIBSA} -lc

format:	format.o srt0.o confhpup.o ${LIBSA}
	$(LD) -N -o format srt0.o format.o confhpup.o ${LIBSA} -lc

drtest:	drtest.o srt0.o confhpup.o ${LIBSA}
	$(LD) -N -o drtest srt0.o drtest.o confhpup.o ${LIBSA} -lc

# utilities

d44 1
a44 1
	rm -f *.o *.i *.b *.a a.out boot cat copy format drtest core bootconf.c
d51 4
a54 2
install: ${ALL}
	cp boot ${DESTDIR}/boot
d74 2
@


1.1
log
@Standalone version for vax 4.3 BSD
@
text
@d1 9
a9 13
#
# Copyright (c) 1980, 1986 Regents of the University of California.
# All rights reserved.  The Berkeley software License Agreement
# specifies the terms and conditions for redistribution.
#
#	@@(#)Makefile	7.1 (Berkeley) 6/5/86
#
DESTDIR=/
INCPATH=-I. -I../h
CFLAGS=	-O ${INCPATH} -DSTANDALONE ${COPTS} 
COPTS=	-DVAX780 -DVAX750 -DVAX730 -DVAX8600
730OPTS=-O ${INCPATH} -DSTANDALONE -DVAX730
RELOC=	70000
d11 1
a11 13
SRCS=	sys.c conf.c prf.c machdep.c \
	autoconf.c hp.c hpmaptype.c ht.c idc.c mba.c mt.c rk.c \
	rl.c tm.c ts.c up.c upmaptype.c uba.c uda.c ut.c \
	drtest.c format.c up.old.c hp.old.c ../vax/dkbad.c
DUMMIES= bootxx.c confxx.c
DRIVERS=autoconf.o hp.o hpmaptype.o ht.o idc.o mba.o mt.o \
	rk.o rl.o tm.o ts.o \
	up.o upmaptype.o uba.o uda.o ut.o
# These drivers don't have ecc correction and bad sector forwarding;
# they are placed in the file system boot area for 750's.  If your
# root has bad sectors you can try and squeeze the newer drivers in...
ODRIVERS=hp.old.o up.old.o
LIBSA=	libsa.a
d13 2
a14 3
ALL=	boot tpboot copy tpcopy \
	format tpformat drtest boothp boothk bootup bootra bootrl \
	730boot 730copy 730format 730drtest
d16 1
a16 1
all: ${ALL}
d18 1
a18 3
${LIBSA}: sys.o conf.o ${DRIVERS} prf.o machdep.o dkbad.o
	ar crv ${LIBSA} $?
	ranlib ${LIBSA}
d20 1
a20 4
${ODRIVERS} ${DRIVERS}: savax.h
	cc -c -S ${COPTS} $*.c
	/lib/c2 -i $*.s | as -o $*.o
	rm -f $*.s
d22 3
a24 2
dkbad.o: ../vax/dkbad.c
	${CC} -c ${CFLAGS} ../vax/dkbad.c
d26 4
d32 2
a33 2
srt0.o: srt0.c ../vax/mtpr.h ../vax/cpu.h
	cc -E -DRELOC=0x${RELOC} ${COPTS} srt0.c | as -o srt0.o
d35 2
a36 2
tpsrt0.o: srt0.c ../vax/mtpr.h ../vax/cpu.h
	cc -E -DRELOC=0x${RELOC} -DTP ${COPTS} srt0.c | as -o tpsrt0.o 
a37 26
relsrt0.o: srt0.c ../vax/mtpr.h ../vax/cpu.h
	cc -E -DRELOC=0x${RELOC} -DREL ${COPTS} srt0.c | as -o relsrt0.o

# bootable from tape

tpboot:	tpboot.o relsrt0.o ${LIBSA}
	ld -N -T ${RELOC} relsrt0.o tpboot.o ${LIBSA} -lc
	strip a.out; dd if=a.out of=tpboot ibs=32 skip=1; rm -f a.out

tpboot.o: boot.c ../h/param.h ../h/inode.h ../h/fs.h
tpboot.o: saio.h ../h/reboot.h ../h/vm.h 
	cp boot.c tpboot.c; chmod +w tpboot.c
	cc -c -O -DJUSTASK tpboot.c
	rm -f tpboot.c

tpcopy:	copy.o tpsrt0.o ${LIBSA}
	ld -N tpsrt0.o copy.o ${LIBSA} -lc
	strip a.out; dd if=a.out of=tpcopy ibs=32 skip=1; rm -f a.out

tpformat: format.o tpsrt0.o confhpup.o ${LIBSA}
	cp format.c tpformat.c; chmod +w tpformat.c
	cc -c -O -DJUSTEXIT tpformat.c
	rm -f tpformat.c
	ld -N tpsrt0.o tpformat.o confhpup.o ${LIBSA} -lc
	strip a.out; dd if=a.out of=tpformat ibs=32 skip=1; rm -f a.out

d41 1
a41 1
	ld -N -T ${RELOC} -o boot relsrt0.o boot.o bootconf.o ${LIBSA} -lc
d45 1
a45 1
	cc -c ${COPTS} -DBOOT bootconf.c
d49 1
a49 1
	ld -N -o copy srt0.o copy.o conf.o ${LIBSA} -lc
d52 1
a52 1
	ld -N -o format srt0.o format.o confhpup.o ${LIBSA} -lc
d55 1
a55 1
	ld -N -o drtest srt0.o drtest.o confhpup.o ${LIBSA} -lc
a56 112
# for 730s minimize size to avoid microcode botch
# (won't load files larger than 12.5 Kbytes)

730boot.o: boot.o
	cp boot.c 730boot.c; chmod +w 730boot.c
	cc -c ${730OPTS} 730boot.c
	rm -f 730boot.c

730boot: 730boot.o relsrt0.o 730bootconf.o ${LIBSA}
	ld -N -T ${RELOC} -o 730boot relsrt0.o 730boot.o 730bootconf.o ${LIBSA} -lc

730bootconf.o: conf.o
	cp conf.c 730bootconf.c
	cc -c ${730OPTS} -DBOOT 730bootconf.c
	rm -f 730bootconf.c

730copy: copy.o srt0.o 730conf.o ${LIBSA}
	ld -N -o 730copy srt0.o copy.o 730conf.o ${LIBSA} -lc

730drtest: drtest.o srt0.o confup.o ${LIBSA}
	ld -N -o 730drtest srt0.o drtest.o confup.o ${LIBSA} -lc

730format: format.o srt0.o confup.o ${LIBSA}
	ld -N -o 730format srt0.o format.o confup.o ${LIBSA} -lc

730conf.o: conf.o
	cp conf.c 730conf.c
	cc -c ${730OPTS} 730conf.c
	rm -f 730conf.c

# bootstrap from ether

### not yet, rosin, not yet ###

# getting booted from disc

boothk: relsrt0.o boothk.o confrk.o smsys.o ${LIBSA}
	ld -N -T ${RELOC} relsrt0.o boothk.o confrk.o smsys.o ${LIBSA} -lc
	strip a.out;dd if=a.out of=boothk ibs=32 skip=1;rm -f a.out

boothp: relsrt0.o boothp.o confhp.o hp.old.o smsys.o ${LIBSA}
	ld -N -T ${RELOC} relsrt0.o boothp.o confhp.o hp.old.o smsys.o ${LIBSA} -lc
	strip a.out;dd if=a.out of=boothp ibs=32 skip=1;rm -f a.out

bootup: relsrt0.o bootup.o confup.o up.old.o smsys.o ${LIBSA}
	ld -N -T ${RELOC} relsrt0.o bootup.o confup.o up.old.o smsys.o ${LIBSA} -lc
	strip a.out;dd if=a.out of=bootup ibs=32 skip=1;rm -f a.out

bootra: relsrt0.o bootra.o confra.o smsys.o ${LIBSA}
	ld -N -T ${RELOC} relsrt0.o bootra.o confra.o smsys.o ${LIBSA} -lc
	strip a.out;dd if=a.out of=bootra ibs=32 skip=1;rm -f a.out

bootrl: relsrt0.o bootrl.o confrl.o smsys.o ${LIBSA}
	ld -N -T ${RELOC} relsrt0.o bootrl.o confrl.o smsys.o ${LIBSA} -lc
	strip a.out;dd if=a.out of=bootrl ibs=32 skip=1;rm -f a.out

boothp.o: boothp.c bootxx.o
boothk.o: boothk.c bootxx.o
bootup.o: bootup.c bootxx.o
bootra.o: bootra.c bootxx.o
bootrl.o: bootrl.c bootxx.o

bootxx.o:
	touch bootxx.o

smsys.o: sys.o
	-rm -f smsys.c
	-ln -s sys.c smsys.c
	cc -c -DSMALL ${CFLAGS} smsys.c
	-rm -f smsys.c

boothk.c: bootxx.c
	-rm -f boothk.c
	sed -e 's/xx/hk/g' <bootxx.c >boothk.c
boothp.c: bootxx.c
	-rm -f boothp.c
	sed -e 's/xx/hp/g' <bootxx.c >boothp.c
bootup.c: bootxx.c
	-rm -f bootup.c
	sed -e 's/xx/up/g' <bootxx.c >bootup.c
bootra.c: bootxx.c
	-rm -f bootra.c
	sed -e 's/xx/ra/g' <bootxx.c >bootra.c
bootrl.c: bootxx.c
	-rm -f bootrl.c
	sed -e 's/xx/rl/g' <bootxx.c >bootrl.c

confrk.o: confrk.c confxx.o
confhp.o: confhp.c confxx.o
confup.o: confup.c confxx.o
confra.o: confra.c confxx.o
confrl.o: confrl.c confxx.o

confxx.o:
	touch confxx.o

confrk.c: confxx.c
	-rm -f confrk.c
	sed -e 's/XX/hk/' -e 's/xx/rk/g' <confxx.c >confrk.c
confhp.c: confxx.c
	-rm -f confhp.c
	sed -e 's/XX/hp/' -e 's/xx/hp/g' <confxx.c >confhp.c
confup.c: confxx.c
	-rm -f confup.c
	sed -e 's/XX/up/' -e 's/xx/up/g' <confxx.c >confup.c
confra.c: confxx.c
	-rm -f confra.c
	sed -e 's/XX/ra/' -e 's/xx/ra/g' <confxx.c >confra.c
confrl.c: confxx.c
	-rm -f confrl.c
	sed -e 's/XX/rl/' -e 's/xx/rl/g' <confxx.c >confrl.c

a58 5
print:
	@@pr makefile
	@@ls -l | pr 
	@@pr *.h *.c

d60 1
a60 5
	rm -f *.o *.exe *.i errs
	rm -f a.out boot cat tpboot tpcopy copy tpformat
	rm -f boot[a-z]? boot[a-wyz][a-z].c conf[a-wyz][a-z].c
	rm -f format drtest core sboot bootconf.c
	rm -f 730boot 730copy 730drtest 730format
d63 2
a64 2
	lint ${COPTS} -hxbn boot.c ${SRCS} | \
	    grep -v 'possible pointer alignment' | \
a68 33
	cp format ${DESTDIR}/format
	cp copy ${DESTDIR}/copy
	cp drtest ${DESTDIR}/drtest
	strip ${DESTDIR}/format ${DESTDIR}/copy ${DESTDIR}/drtest
	cp pcs750.bin ${DESTDIR}/pcs750.bin
	cp tpcopy ../dist/tp/copy
	cp tpboot ../dist/tp/boot
	cp tpformat ../dist/tp/format
	cp boot a.out; strip a.out; \
		dd if=a.out of=../floppy/boot bs=32 skip=1; rm a.out
	cp 730boot a.out; strip a.out; \
		dd if=a.out of=../cassette/boot.730 bs=32 skip=1; rm a.out
	cp ../floppy/boot ../cassette/boot.750
	cp ../floppy/boot ../consolerl/boot
	cp copy a.out; strip a.out; \
		dd if=a.out of=../floppy/copy bs=32 skip=1; rm a.out
	cp 730copy a.out; strip a.out; \
		dd if=a.out of=../cassette/copy.730 bs=32 skip=1; rm a.out
	cp ../floppy/copy ../cassette/copy.750
	cp ../floppy/copy ../consolerl/copy
	cp format a.out; strip a.out; \
		dd if=a.out of=../floppy/format bs=32 skip=1; rm a.out
	cp 730format a.out; strip a.out; \
		dd if=a.out of=../cassette/format.730 bs=32 skip=1; rm a.out
	cp ../floppy/format ../cassette/format.750
	cp ../floppy/format ../consolerl/format
	cp drtest a.out; strip a.out; \
		dd if=a.out of=../floppy/drtest bs=32 skip=1; rm a.out
	cp 730drtest a.out; strip a.out; \
		dd if=a.out of=../cassette/drtest.730 bs=32 skip=1; rm a.out
	cp ../floppy/drtest ../cassette/drtest.750
	cp ../floppy/drtest ../consolerl/drtest
	cp bootup boothk boothp bootra bootrl ${DESTDIR}/usr/mdec
d71 5
a75 5
	for i in ${SRCS} ${DUMMIES}; do \
	    cc -M ${INCPATH} $$i | \
	    awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \
		else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
		else rec = rec " " $$2 } } \
a88 122

sys.o: sys.c ./../h/param.h /usr/include/machine/machparam.h ../h/signal.h
sys.o: /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h ./../h/dir.h
sys.o: ./saio.h

conf.o: conf.c ./../machine/pte.h ./../h/param.h
conf.o: /usr/include/machine/machparam.h ../h/signal.h /usr/include/sys/types.h
conf.o: ./../h/inode.h ./../h/fs.h ./../vaxmba/mbareg.h ./saio.h

prf.o: prf.c ./../h/param.h /usr/include/machine/machparam.h ../h/signal.h
prf.o: /usr/include/sys/types.h ./../vax/mtpr.h ./../vax/cons.h

machdep.o: machdep.c ./../h/param.h /usr/include/machine/machparam.h
machdep.o: ../h/signal.h /usr/include/sys/types.h ./../vax/mtpr.h

autoconf.o: autoconf.c ./../machine/pte.h ./../h/param.h
autoconf.o: /usr/include/machine/machparam.h ../h/signal.h
autoconf.o: /usr/include/sys/types.h ./../vax/cpu.h ./../vax/nexus.h
autoconf.o: ./../vaxuba/ubareg.h ./../vaxmba/mbareg.h ./../vax/mtpr.h ./savax.h

hp.o: hp.c ./../h/param.h /usr/include/machine/machparam.h ../h/signal.h
hp.o: /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h ./../h/dkbad.h
hp.o: ./../vax/pte.h ./../vaxmba/hpreg.h ./../vaxmba/mbareg.h ./saio.h
hp.o: ./savax.h

hpmaptype.o: hpmaptype.c ./../machine/pte.h ./../h/param.h
hpmaptype.o: /usr/include/machine/machparam.h ../h/signal.h
hpmaptype.o: /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
hpmaptype.o: ./../vaxmba/hpreg.h ./../vaxmba/mbareg.h ./saio.h ./savax.h

ht.o: ht.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
ht.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
ht.o: ./../vaxmba/htreg.h ./../vaxmba/mbareg.h ./saio.h ./savax.h

idc.o: idc.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
idc.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
idc.o: ./../vaxuba/idcreg.h ./../vaxuba/ubareg.h ./saio.h ./savax.h

mba.o: mba.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
mba.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
mba.o: ./../h/vm.h /usr/include/sys/vmparam.h /usr/include/machine/vmparam.h
mba.o: /usr/include/sys/vmmac.h /usr/include/sys/vmmeter.h
mba.o: /usr/include/sys/vmsystm.h ./../vax/mtpr.h ./../vaxmba/mbareg.h
mba.o: ./../vaxmba/hpreg.h ./saio.h ./savax.h

mt.o: mt.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
mt.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
mt.o: ./../vaxmba/mtreg.h ./../vaxmba/mbareg.h ./saio.h ./savax.h

rk.o: rk.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
rk.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
rk.o: ./../vaxuba/ubareg.h ./../vaxuba/rkreg.h ./saio.h ./savax.h

rl.o: rl.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
rl.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
rl.o: ./../vaxuba/rlreg.h ./../vaxuba/ubareg.h ./saio.h ./savax.h

tm.o: tm.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
tm.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
tm.o: ./../vaxuba/ubareg.h ./../vaxuba/tmreg.h ./saio.h ./savax.h

ts.o: ts.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
ts.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
ts.o: ./../vaxuba/tsreg.h ./../vaxuba/ubareg.h ./saio.h ./savax.h

up.o: up.c ./../h/param.h /usr/include/machine/machparam.h ../h/signal.h
up.o: /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h ./../h/dkbad.h
up.o: ./../h/vmmac.h ./../vax/pte.h ./../vaxuba/upreg.h ./../vaxuba/ubareg.h
up.o: ./saio.h ./savax.h

upmaptype.o: upmaptype.c ./../h/param.h /usr/include/machine/machparam.h
upmaptype.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
upmaptype.o: ./../h/dkbad.h ./../h/vmmac.h ./../vax/pte.h ./../vaxuba/upreg.h
upmaptype.o: ./../vaxuba/ubareg.h ./saio.h ./savax.h

uba.o: uba.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
uba.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/vm.h
uba.o: /usr/include/sys/vmparam.h /usr/include/machine/vmparam.h
uba.o: /usr/include/sys/vmmac.h /usr/include/sys/vmmeter.h
uba.o: /usr/include/sys/vmsystm.h ./../h/fs.h ./../vax/cpu.h
uba.o: ./../vaxuba/ubareg.h ./saio.h ./savax.h

uda.o: uda.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
uda.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
uda.o: ./saio.h ./savax.h ./../vaxuba/udareg.h ./../vaxuba/ubareg.h
uda.o: ./../vax/mscp.h

ut.o: ut.c ./../machine/pte.h ./../h/param.h /usr/include/machine/machparam.h
ut.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
ut.o: ./../vaxuba/ubareg.h ./../vaxuba/utreg.h ./saio.h ./savax.h

drtest.o: drtest.c ./../h/param.h /usr/include/machine/machparam.h
drtest.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
drtest.o: ./saio.h

format.o: format.c ./../h/param.h /usr/include/machine/machparam.h
format.o: ../h/signal.h /usr/include/sys/types.h ./../h/fs.h ./../h/inode.h
format.o: ./../h/dkbad.h ./../h/vmmac.h ./saio.h ./savax.h

up.old.o: up.old.c ./../machine/pte.h ./../h/param.h
up.old.o: /usr/include/machine/machparam.h ../h/signal.h
up.old.o: /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
up.old.o: ./../vaxuba/upreg.h ./../vaxuba/ubareg.h ./saio.h ./savax.h

hp.old.o: hp.old.c ./../machine/pte.h ./../h/param.h
hp.old.o: /usr/include/machine/machparam.h ../h/signal.h
hp.old.o: /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
hp.old.o: ./../vaxmba/hpreg.h ./../vaxmba/mbareg.h ./saio.h ./savax.h

dkbad.o: ../vax/dkbad.c ../h/param.h /usr/include/machine/machparam.h
dkbad.o: ../h/signal.h /usr/include/sys/types.h ../h/buf.h ../h/dkbad.h

bootxx.o: bootxx.c ./../h/param.h /usr/include/machine/machparam.h
bootxx.o: ../h/signal.h /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h
bootxx.o: ./../h/vm.h /usr/include/sys/vmparam.h /usr/include/machine/vmparam.h
bootxx.o: /usr/include/sys/vmmac.h /usr/include/sys/vmmeter.h
bootxx.o: /usr/include/sys/vmsystm.h /usr/include/a.out.h
bootxx.o: /usr/include/sys/exec.h ./saio.h ./../h/reboot.h

confxx.o: confxx.c ./../machine/pte.h ./../h/param.h
confxx.o: /usr/include/machine/machparam.h ../h/signal.h
confxx.o: /usr/include/sys/types.h ./../h/inode.h ./../h/fs.h ./saio.h
@
