|
|
1.1 root 1:
2: #
3: # HDRS included files
4: #
5: # SRCS source files
6: #
7:
8: MAKEPARAM = AS=${AS} CC=${CC} LD=${LD} INCLDIR=${INCLDIR} LIBDIR=${LIBDIR} ULIBDIR=${ULIBDIR} DESTDIR=${DESTDIR}
9:
10: HDRS1 = prvreg.h psl.h pte.h pcboffset.h const.h scboffset.h \
11: sptoffset.h trap.h
12:
13: LD_FLG = -T 0
14:
15: .SUFFIXES:
16: .SUFFIXES: .x .s .o .c
17:
18: .x.o:
19: cat $*.x | sed 's/^#\([^id]\)/ #\1/' | /lib/cpp | ${AS} -o $*.o
20:
21: .s.o:
22: cat INCLUDE $*.s | ${AS} -o $*.o
23:
24: .c.o:
25: ${CC} -c $*.c
26:
27:
28: SYS = init.o sys.o buser.o bio.o cp.o
29: PROC0 = tape.o tm_ex.o vddc.o vddc_ex.o multi.o
30: #SYS = udcinit.o sys.o buser.o bio.o cp.o
31: #PROC0 = udc.o u_ex.o
32: TESTS = $(SYS) $(PROC0)
33:
34:
35: all : io
36:
37: install: all
38: install -c io ${DESTDIR}/d
39:
40: io.st : $(TESTS)
41: ${LD} $(LD_FLG) -N -x -o io.st $(TESTS)
42:
43: io : io.st
44: dd if=io.st of=io skip=1 bs=2080
45:
46: cleansrc:
47: rm -f *.[cshx] definitions Makefile
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.