|
|
1.1 root 1: #
2: # Copyright (c) 1980, 1988 Regents of the University of California.
3: # All rights reserved.
4: #
5: # Redistribution and use in source and binary forms are permitted
6: # provided that the above copyright notice and this paragraph are
7: # duplicated in all such forms and that any documentation,
8: # advertising materials, and other materials related to such
9: # distribution and use acknowledge that the software was developed
10: # by the University of California, Berkeley. The name of the
11: # University may not be used to endorse or promote products derived
12: # from this software without specific prior written permission.
13: # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14: # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15: # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16: #
17: # @(#)Makefile 7.15 (Berkeley) 7/9/88
18: #
19:
20: DESTDIR=
21: STAND= /stand
22: INCPATH=-I. -I../stand -I../h
23: VPATH= ../stand:../vax
24: DEFS= ${INCPATH} -DSTANDALONE -DCOMPAT_42
25: MACH= -DVAX8600 -DVAX8200 -DVAX780 -DVAX750 -DVAX730 -DVAX630
26:
27: # Collections of C options:
28: # COPTS device drivers/assembler, not optimized
29: # SMOPTS "small" versions for 7.5K bootxx programs
30: # 730OPTS "small" versions for 11/730-only versions
31: # CFLAGS everything else
32:
33: COPTS= ${DEFS} ${MACH}
34: CFLAGS= -O ${DEFS} ${MACH}
35: 730OPTS=-O ${DEFS} -DVAX730
36: SMOPTS= ${DEFS} -DSMALL -DVAX750 -DVAX630
37:
38: RELOC= 150000
39: LIBSA= libsa.a
40:
41: SRCS= autoconf.c boot.c bootxx.c cat.c copy.c dev.c drtest.c format.c \
42: format.c getfile.c gets.c hp.c hpmaptype.c ht.c idc.c kdb.c \
43: machdep.c mba.c mt.c prf.c printn.c qdcons.c qvcons.c qfont.c \
44: rk.c rl.c sys.c tm.c tmscp.c ts.c uba.c uda.c up.c upmaptype.c \
45: ut.c conf.c ../vax/dkbad.c
46: DUMMIES=confxx.c
47: DRIVERS=autoconf.o hp.o hpmaptype.o ht.o idc.o kdb.o mba.o mt.o qdcons.o \
48: qvcons.o rk.o rl.o tm.o tmscp.o ts.o up.o upmaptype.o uba.o uda.o \
49: ut.o
50: SMOBJ= bootxx.o sm_sys.o sm_autoconf.o
51:
52: # These drivers don't have ecc correction and bad sector forwarding;
53: # they are placed in the file system boot area for 750's. If your
54: # root has bad sectors you can try and squeeze the newer drivers in...
55: ODRIVERS=sm_hp.o sm_up.o
56:
57: MDEC= boothp boothk bootkra bootup bootra bootrl
58: ALL= boot tpboot cat copy tpcopy format tpformat drtest ls \
59: 730boot 730copy 730format 730drtest ${MDEC}
60:
61: all: ${ALL}
62:
63: ${LIBSA}: conf.o dev.o dkbad.o getfile.o gets.o machdep.o prf.o printn.o \
64: qfont.o sys.o ${DRIVERS}
65: ar crv ${LIBSA} $?
66: ranlib ${LIBSA}
67:
68: ${DRIVERS}:
69: ${CC} -c -S ${COPTS} $*.c
70: /lib/c2 -i $*.s | as -o $*.o
71: rm -f $*.s
72:
73: # startups
74:
75: srt0.o: srt0.c ../vax/mtpr.h ../vax/cpu.h
76: ${CC} -E -DRELOC=0x${RELOC} ${COPTS} srt0.c | as -o srt0.o
77:
78: tpsrt0.o: srt0.c ../vax/mtpr.h ../vax/cpu.h
79: ${CC} -E -DRELOC=0x${RELOC} -DTP ${COPTS} srt0.c | as -o tpsrt0.o
80:
81: relsrt0.o: srt0.c ../vax/mtpr.h ../vax/cpu.h
82: ${CC} -E -DRELOC=0x${RELOC} -DREL ${COPTS} srt0.c | as -o relsrt0.o
83:
84: # bootable from tape
85:
86: tpboot: tpboot.o relsrt0.o ${LIBSA}
87: ld -N -T ${RELOC} relsrt0.o tpboot.o ${LIBSA} -lc
88: strip a.out; dd if=a.out of=tpboot ibs=32 skip=1; rm -f a.out
89:
90: tpboot.o: boot.o
91: rm -f $*.c
92: ln -s boot.c $*.c
93: ${CC} -c ${CFLAGS} -DJUSTASK $*.c
94: rm -f $*.c
95:
96: tpcopy: copy.o tpsrt0.o ${LIBSA}
97: ld -N tpsrt0.o copy.o ${LIBSA} -lc
98: strip a.out; dd if=a.out of=tpcopy ibs=32 skip=1; rm -f a.out
99:
100: tpformat: tpformat.o tpsrt0.o confhpup.o ${LIBSA}
101: ld -N tpsrt0.o tpformat.o confhpup.o ${LIBSA} -lc
102: strip a.out; dd if=a.out of=tpformat ibs=32 skip=1; rm -f a.out
103:
104: tpformat.o: format.o
105: rm -f $*.c
106: ln -s format.c $*.c
107: ${CC} -c ${CFLAGS} -DJUSTEXIT $*.c
108: rm -f $*.c
109:
110: # bootable from floppy or real disks
111:
112: boot: boot.o relsrt0.o bootconf.o ${LIBSA}
113: ld -N -T ${RELOC} -o $@ relsrt0.o boot.o bootconf.o ${LIBSA} -lc
114:
115: bootconf.o: conf.o
116: rm -f $*.c
117: ln -s conf.c $*.c
118: ${CC} -c ${CFLAGS} -DBOOT $*.c
119: rm -f $*.c
120:
121: copy: copy.o srt0.o getfile.o ${LIBSA}
122: ld -N -o $@ srt0.o copy.o getfile.o ${LIBSA} -lc
123:
124: cat: cat.o srt0.o getfile.o ${LIBSA}
125: ld -N -o $@ srt0.o cat.o getfile.o ${LIBSA} -lc
126:
127: ls: ls.o srt0.o getfile.o ${LIBSA}
128: ld -N -o $@ srt0.o ls.o getfile.o ${LIBSA} -lc
129:
130: format: format.o srt0.o confhpup.o ${LIBSA}
131: ld -N -o $@ srt0.o format.o confhpup.o ${LIBSA} -lc
132:
133: drtest: drtest.o srt0.o confhpup.o ${LIBSA}
134: ld -N -o $@ srt0.o drtest.o confhpup.o ${LIBSA} -lc
135:
136: # for 730s minimize size to avoid microcode botch
137: # (won't load files larger than 12.5 Kbytes)
138:
139: 730boot.o: boot.o
140: rm -f $*.c
141: ln -s boot.c $*.c
142: ${CC} -c ${730OPTS} $*.c
143: rm -f $*.c
144:
145: 730boot: 730boot.o relsrt0.o 730bootconf.o ${LIBSA}
146: ld -N -T ${RELOC} -o 730boot relsrt0.o 730boot.o 730bootconf.o ${LIBSA} -lc
147:
148: 730bootconf.o: conf.o
149: rm -f $*.c
150: ln -s conf.c $*.c
151: ${CC} -c ${730OPTS} -DBOOT $*.c
152: rm -f $*.c
153:
154: 730copy: copy.o srt0.o 730conf.o ${LIBSA}
155: ld -N -o $@ srt0.o copy.o 730conf.o ${LIBSA} -lc
156:
157: 730drtest: drtest.o srt0.o confup.o ${LIBSA}
158: ld -N -o $@ srt0.o drtest.o confup.o ${LIBSA} -lc
159:
160: 730format: format.o srt0.o confup.o ${LIBSA}
161: ld -N -o $@ srt0.o format.o confup.o ${LIBSA} -lc
162:
163: 730conf.o: conf.o
164: rm -f $*.c
165: ln -s conf.c $*.c
166: ${CC} -c ${730OPTS} $*.c
167: rm -f $*.c
168:
169: # bootstrap from ether
170:
171: ### not yet, rosin, not yet ###
172:
173: # getting booted from disc
174:
175: boothk: relsrt0.o confrk.o ${SMOBJ} ${LIBSA}
176: ld -N -T ${RELOC} relsrt0.o confrk.o ${SMOBJ} ${LIBSA} -lc
177: size a.out
178: rm -f $@
179: strip a.out;dd if=a.out of=$@ ibs=32 skip=1;rm -f a.out
180: ls -l $@
181:
182: boothp: relsrt0.o confhp.o sm_hp.o ${SMOBJ} ${LIBSA}
183: ld -N -T ${RELOC} relsrt0.o confhp.o sm_hp.o ${SMOBJ} ${LIBSA} -lc
184: size a.out
185: rm -f $@
186: strip a.out;dd if=a.out of=$@ ibs=32 skip=1;rm -f a.out
187: ls -l $@
188:
189: bootkra: relsrt0.o confkra.o ${SMOBJ} ${LIBSA}
190: ld -N -T ${RELOC} relsrt0.o confkra.o ${SMOBJ} ${LIBSA} -lc
191: size a.out
192: rm -f $@
193: strip a.out;dd if=a.out of=$@ ibs=32 skip=1;rm -f a.out
194: ls -l $@
195:
196: bootup: relsrt0.o confup.o sm_up.o ${SMOBJ} ${LIBSA}
197: ld -N -T ${RELOC} relsrt0.o confup.o sm_up.o ${SMOBJ} ${LIBSA} -lc
198: size a.out
199: rm -f $@
200: strip a.out;dd if=a.out of=$@ ibs=32 skip=1;rm -f a.out
201: ls -l $@
202:
203: bootra: relsrt0.o confra.o ${SMOBJ} ${LIBSA}
204: ld -N -T ${RELOC} relsrt0.o confra.o ${SMOBJ} ${LIBSA} -lc
205: size a.out
206: rm -f $@
207: strip a.out;dd if=a.out of=$@ ibs=32 skip=1;rm -f a.out
208: ls -l $@
209:
210: bootrl: relsrt0.o confrl.o ${SMOBJ} ${LIBSA}
211: ld -N -T ${RELOC} relsrt0.o confrl.o ${SMOBJ} ${LIBSA} -lc
212: size a.out
213: rm -f $@
214: strip a.out;dd if=a.out of=$@ ibs=32 skip=1;rm -f a.out
215: ls -l $@
216:
217: sm_hp.o: hp.o
218: rm -f sm_hp.c
219: ln -s hp.c sm_hp.c
220: ${CC} -S ${SMOPTS} sm_hp.c
221: /lib/c2 -i sm_hp.s | as -o sm_hp.o
222: rm -f sm_hp.s sm_hp.c
223:
224: sm_up.o: up.o
225: rm -f sm_up.c
226: ln -s up.c sm_up.c
227: ${CC} -S ${SMOPTS} sm_up.c
228: /lib/c2 -i sm_up.s | as -o sm_up.o
229: rm -f sm_up.s sm_up.c
230:
231: sm_sys.o: sys.o
232: rm -f sm_sys.c
233: ln -s sys.c sm_sys.c
234: ${CC} -c -O ${SMOPTS} sm_sys.c
235: rm -f sm_sys.c
236:
237: sm_autoconf.o: autoconf.o
238: rm -f sm_autoconf.c
239: ln -s autoconf.c sm_autoconf.c
240: ${CC} -c -O ${SMOPTS} sm_autoconf.c
241: rm -f sm_autoconf.c
242:
243: confrk.o: confrk.c confxx.o
244: confhp.o: confhp.c confxx.o
245: confkra.o: confkra.c confxx.o
246: confup.o: confup.c confxx.o
247: confra.o: confra.c confxx.o
248: confrl.o: confrl.c confxx.o
249:
250: confxx.o:
251: touch confxx.o
252:
253: confrk.c: confxx.c dev.c
254: sed -e 's/io->i_ino.i_dev/0/g' < dev.c > confrk.c
255: sed -e 's/XX/hk/' -e 's/xx/rk/g' < confxx.c >> confrk.c
256: confhp.c: confxx.c dev.c
257: sed -e 's/io->i_ino.i_dev/0/g' < dev.c > confhp.c
258: sed -e 's/XX/hp/' -e 's/xx/hp/g' < confxx.c >> confhp.c
259: confkra.c: confxx.c dev.c
260: sed -e 's/io->i_ino.i_dev/0/g' < dev.c > confkra.c
261: sed -e 's/XX/kra/' -e 's/xx/kra/g' < confxx.c >> confkra.c
262: confup.c: confxx.c dev.c
263: sed -e 's/io->i_ino.i_dev/0/g' < dev.c > confup.c
264: sed -e 's/XX/up/' -e 's/xx/up/g' < confxx.c >> confup.c
265: confra.c: confxx.c dev.c
266: sed -e 's/io->i_ino.i_dev/0/g' < dev.c > confra.c
267: sed -e 's/XX/ra/' -e 's/xx/ra/g' < confxx.c >> confra.c
268: confrl.c: confxx.c dev.c
269: sed -e 's/io->i_ino.i_dev/0/g' < dev.c > confrl.c
270: sed -e 's/XX/rl/' -e 's/xx/rl/g' < confxx.c >> confrl.c
271:
272: clean: FRC
273: rm -f *.o *.exe *.i sm_*.c libsa.a
274: rm -f boot[a-wyz][a-z].c conf[a-wyz][a-z].c
275: rm -f ${ALL} a.out core errs sboot bootconf.c
276:
277: depend: ${SRCS} FRC
278: mkdep ${INCPATH} -DSTANDALONE ${SRCS} ${DUMMIES}
279:
280: install: FRC
281: install -c -s -o bin -g bin -m 644 format cat copy drtest ls ${DESTDIR}${STAND}
282: install -c -o bin -g bin -m 644 boot pcs750.bin ${DESTDIR}/
283: [ -d ../vaxdist/tp ] || mkdir ../vaxdist/tp
284: cp tpcopy ../vaxdist/tp/copy
285: cp tpboot ../vaxdist/tp/boot
286: cp tpformat ../vaxdist/tp/format
287: cp boot a.out; strip a.out; \
288: dd if=a.out of=../floppy/boot bs=32 skip=1; rm a.out
289: cp 730boot a.out; strip a.out; \
290: dd if=a.out of=../cassette/boot.730 bs=32 skip=1; rm a.out
291: cp ../floppy/boot ../cassette/boot.750
292: cp ../floppy/boot ../consolerl/boot
293: cp copy a.out; strip a.out; \
294: dd if=a.out of=../floppy/copy bs=32 skip=1; rm a.out
295: cp 730copy a.out; strip a.out; \
296: dd if=a.out of=../cassette/copy.730 bs=32 skip=1; rm a.out
297: cp ../floppy/copy ../cassette/copy.750
298: cp ../floppy/copy ../consolerl/copy
299: cp format a.out; strip a.out; \
300: dd if=a.out of=../floppy/format bs=32 skip=1; rm a.out
301: cp 730format a.out; strip a.out; \
302: dd if=a.out of=../cassette/format.730 bs=32 skip=1; rm a.out
303: cp ../floppy/format ../cassette/format.750
304: cp ../floppy/format ../consolerl/format
305: cp drtest a.out; strip a.out; \
306: dd if=a.out of=../floppy/drtest bs=32 skip=1; rm a.out
307: cp 730drtest a.out; strip a.out; \
308: dd if=a.out of=../cassette/drtest.730 bs=32 skip=1; rm a.out
309: cp ../floppy/drtest ../cassette/drtest.750
310: cp ../floppy/drtest ../consolerl/drtest
311: install -c -o bin -g bin -m 444 ${MDEC} ${DESTDIR}/usr/mdec
312: rm -f ${DESTDIR}/usr/mdec/bootrd
313: ln ${DESTDIR}/usr/mdec/bootra ${DESTDIR}/usr/mdec/bootrd
314:
315: lint:
316: lint ${COPTS} -hxbn boot.c ${SRCS} | \
317: sed -e '/possible pointer alignment/d' \
318: -e '/struct\/union .* never defined/d'
319:
320: tags: ${SRCS} FRC
321: ctags ${SRCS} ${DUMMIES}
322:
323: FRC:
324:
325: # DO NOT DELETE THIS LINE -- mkdep uses it.
326: # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
327:
328: autoconf.o: autoconf.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h
329: autoconf.o: ../h/signal.h /usr/include/machine/trap.h
330: autoconf.o: /usr/include/machine/machparam.h /usr/include/machine/endian.h
331: autoconf.o: ../vax/cpu.h ../vax/nexus.h ../vaxuba/ubareg.h ../vaxmba/mbareg.h
332: autoconf.o: ../vax/mtpr.h savax.h
333: boot.o: boot.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
334: boot.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
335: boot.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../h/vm.h
336: boot.o: ../h/vmparam.h ../h/../machine/vmparam.h ../h/vmmac.h ../h/vmmeter.h
337: boot.o: ../h/vmsystm.h ../h/reboot.h /usr/include/a.out.h
338: boot.o: /usr/include/sys/exec.h ../stand/saio.h ../stand/saioctl.h
339: boot.o: ../stand/saerrno.h
340: bootxx.o: bootxx.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
341: bootxx.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
342: bootxx.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../h/vm.h
343: bootxx.o: ../h/vmparam.h ../h/../machine/vmparam.h ../h/vmmac.h ../h/vmmeter.h
344: bootxx.o: ../h/vmsystm.h ../h/reboot.h /usr/include/a.out.h
345: bootxx.o: /usr/include/sys/exec.h ../stand/saio.h ../stand/saioctl.h
346: bootxx.o: ../stand/saerrno.h
347: cat.o: ../stand/cat.c
348: copy.o: ../stand/copy.c
349: dev.o: ../stand/dev.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
350: dev.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
351: dev.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../stand/saio.h
352: dev.o: ../stand/saioctl.h ../stand/saerrno.h
353: drtest.o: drtest.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
354: drtest.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
355: drtest.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../h/disklabel.h
356: drtest.o: ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h drtest.c
357: drtest.o: ../h/param.h /usr/include/sys/types.h ../h/signal.h
358: drtest.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
359: drtest.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../h/disklabel.h
360: drtest.o: ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
361: format.o: format.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
362: format.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
363: format.o: /usr/include/machine/endian.h ../h/fs.h ../h/inode.h ../h/dkbad.h
364: format.o: ../h/vmmac.h ../h/disklabel.h ../vax/cpu.h ../vax/mtpr.h
365: format.o: ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h savax.h
366: format.o: format.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
367: format.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
368: format.o: /usr/include/machine/endian.h ../h/fs.h ../h/inode.h ../h/dkbad.h
369: format.o: ../h/vmmac.h ../h/disklabel.h ../vax/cpu.h ../vax/mtpr.h
370: format.o: ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h savax.h
371: getfile.o: ../stand/getfile.c ../h/param.h /usr/include/sys/types.h
372: getfile.o: ../h/signal.h /usr/include/machine/trap.h
373: getfile.o: /usr/include/machine/machparam.h /usr/include/machine/endian.h
374: getfile.o: ../h/inode.h ../h/fs.h ../stand/saio.h ../stand/saioctl.h
375: getfile.o: ../stand/saerrno.h
376: gets.o: ../stand/gets.c
377: hp.o: hp.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
378: hp.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
379: hp.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../h/dkbad.h
380: hp.o: ../h/disklabel.h ../vax/pte.h ../vaxmba/hpreg.h ../vaxmba/mbareg.h
381: hp.o: ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h savax.h
382: hpmaptype.o: hpmaptype.c
383: ht.o: ht.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h ../h/signal.h
384: ht.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
385: ht.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../vaxmba/htreg.h
386: ht.o: ../vaxmba/mbareg.h ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
387: ht.o: savax.h
388: idc.o: idc.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h
389: idc.o: ../h/signal.h /usr/include/machine/trap.h
390: idc.o: /usr/include/machine/machparam.h /usr/include/machine/endian.h
391: idc.o: ../h/inode.h ../h/fs.h ../vaxuba/idcreg.h ../vaxuba/ubareg.h
392: idc.o: ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h savax.h
393: machdep.o: machdep.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
394: machdep.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
395: machdep.o: /usr/include/machine/endian.h ../vax/mtpr.h
396: mba.o: mba.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h
397: mba.o: ../h/signal.h /usr/include/machine/trap.h
398: mba.o: /usr/include/machine/machparam.h /usr/include/machine/endian.h
399: mba.o: ../h/inode.h ../h/fs.h ../h/vm.h ../h/vmparam.h
400: mba.o: ../h/../machine/vmparam.h ../h/vmmac.h ../h/vmmeter.h ../h/vmsystm.h
401: mba.o: ../vax/mtpr.h ../vaxmba/mbareg.h ../vaxmba/hpreg.h ../stand/saio.h
402: mba.o: ../stand/saioctl.h ../stand/saerrno.h savax.h
403: mt.o: mt.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h ../h/signal.h
404: mt.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
405: mt.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../vaxmba/mtreg.h
406: mt.o: ../vaxmba/mbareg.h ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
407: mt.o: savax.h
408: prf.o: prf.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
409: prf.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
410: prf.o: /usr/include/machine/endian.h ../vax/mtpr.h ../vax/cons.h
411: printn.o: ../stand/printn.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
412: printn.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
413: printn.o: /usr/include/machine/endian.h
414: qdcons.o: qdcons.c ../h/types.h ../vax/cpu.h ../ultrix/qdioctl.h
415: qdcons.o: ../ultrix/../h/ioctl.h ../ultrix/../h/ttychars.h
416: qdcons.o: ../ultrix/../h/ttydev.h ../ultrix/qevent.h ../ultrix/qduser.h
417: qdcons.o: ../ultrix/qevent.h ../ultrix/qdreg.h
418: qvcons.o: qvcons.c ../h/types.h ../ultrix/qvioctl.h ../ultrix/qevent.h
419: qvcons.o: ../ultrix/../h/ioctl.h ../ultrix/../h/ttychars.h
420: qvcons.o: ../ultrix/../h/ttydev.h ../ultrix/qvreg.h ../vax/cpu.h
421: qfont.o: qfont.c
422: rk.o: rk.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
423: rk.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
424: rk.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../h/disklabel.h
425: rk.o: ../vax/pte.h ../vaxuba/ubareg.h ../vaxuba/rkreg.h ../stand/saio.h
426: rk.o: ../stand/saioctl.h ../stand/saerrno.h savax.h
427: rl.o: rl.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h ../h/signal.h
428: rl.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
429: rl.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../vaxuba/rlreg.h
430: rl.o: ../vaxuba/ubareg.h ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
431: rl.o: savax.h
432: sys.o: ../stand/sys.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
433: sys.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
434: sys.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../h/dir.h
435: sys.o: ../h/reboot.h ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
436: tm.o: tm.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h ../h/signal.h
437: tm.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
438: tm.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../vaxuba/ubareg.h
439: tm.o: ../vaxuba/tmreg.h ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
440: tm.o: savax.h
441: tmscp.o: tmscp.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
442: tmscp.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
443: tmscp.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../vax/pte.h
444: tmscp.o: savax.h ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
445: tmscp.o: ../vaxuba/tmscpreg.h ../vaxuba/ubareg.h ../vax/tmscp.h
446: ts.o: ts.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h ../h/signal.h
447: ts.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
448: ts.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../vaxuba/tsreg.h
449: ts.o: ../vaxuba/ubareg.h ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
450: ts.o: savax.h
451: uba.o: uba.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h
452: uba.o: ../h/signal.h /usr/include/machine/trap.h
453: uba.o: /usr/include/machine/machparam.h /usr/include/machine/endian.h
454: uba.o: ../h/inode.h ../h/vm.h ../h/vmparam.h ../h/../machine/vmparam.h
455: uba.o: ../h/vmmac.h ../h/vmmeter.h ../h/vmsystm.h ../h/fs.h ../vax/cpu.h
456: uba.o: ../vaxuba/ubareg.h ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
457: uba.o: savax.h
458: uda.o: uda.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h
459: uda.o: ../h/signal.h /usr/include/machine/trap.h
460: uda.o: /usr/include/machine/machparam.h /usr/include/machine/endian.h
461: uda.o: ../h/inode.h ../h/fs.h ../h/disklabel.h ../stand/saio.h
462: uda.o: ../stand/saioctl.h ../stand/saerrno.h savax.h ../vaxuba/udareg.h
463: uda.o: ../vaxuba/ubareg.h ../vax/mscp.h
464: up.o: up.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
465: up.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
466: up.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../h/dkbad.h
467: up.o: ../h/disklabel.h ../vax/pte.h ../vaxuba/upreg.h ../vaxuba/ubareg.h
468: up.o: ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h savax.h
469: upmaptype.o: upmaptype.c
470: ut.o: ut.c ../machine/pte.h ../h/param.h /usr/include/sys/types.h ../h/signal.h
471: ut.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
472: ut.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../vaxuba/ubareg.h
473: ut.o: ../vaxuba/utreg.h ../stand/saio.h ../stand/saioctl.h ../stand/saerrno.h
474: ut.o: savax.h
475: conf.o: conf.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
476: conf.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
477: conf.o: /usr/include/machine/endian.h ../h/inode.h ../h/fs.h ../stand/saio.h
478: conf.o: ../stand/saioctl.h ../stand/saerrno.h
479: dkbad.o: ../vax/dkbad.c ../h/param.h /usr/include/sys/types.h ../h/signal.h
480: dkbad.o: /usr/include/machine/trap.h /usr/include/machine/machparam.h
481: dkbad.o: /usr/include/machine/endian.h ../h/buf.h ../h/dkbad.h
482: confxx.o: confxx.c
483:
484: # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.