From c0bf1ac4385c0de5bf11eaf7ff4f782ff1337a1c Mon Sep 17 00:00:00 2001 From: CSRG Date: Sun, 20 Feb 1983 08:15:14 -0800 Subject: [PATCH] BSD 4_1c_2 development Work on file usr/src/new/hyper/Makefile Work on file usr/src/new/hyper/test.input Synthesized-from: CSRG/cd1/4.1c.2 --- usr/src/new/hyper/Makefile | 27 +++++++++++++++++++++++++++ usr/src/new/hyper/test.input | 27 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 usr/src/new/hyper/Makefile create mode 100644 usr/src/new/hyper/test.input diff --git a/usr/src/new/hyper/Makefile b/usr/src/new/hyper/Makefile new file mode 100644 index 0000000000..e2b383fc79 --- /dev/null +++ b/usr/src/new/hyper/Makefile @@ -0,0 +1,27 @@ +CFLAGS=-O + +all: hyroute + +.l.o: + lex -v $*.l + mv lex.yy.c $*.c + cc -S ${CFLAGS} $*.c + sed -f asm.sed $*.s | as -o $*.o + rm -f $*.s + +.c.o: + cc -S ${CFLAGS} $*.c + sed -f asm.sed $*.s | as -o $*.o + rm -f $*.s + +hyroute: hyr_main.o hyr_lex.o + cc $(CFLAGS) -o hyroute hyr_main.o hyr_lex.o -ll + +install: hyroute + install -s hyroute $(DESTDIR)/etc/hyroute + +hyr_main.o: hyr_main.c hyr_sym.h +hyr_lex.o: hyr_lex.l hyr_sym.h + +clean: + -rm *.o hyroute hyr_lex.c diff --git a/usr/src/new/hyper/test.input b/usr/src/new/hyper/test.input new file mode 100644 index 0000000000..c5892ec572 --- /dev/null +++ b/usr/src/new/hyper/test.input @@ -0,0 +1,27 @@ +* +* machines on the local adater (control and access codes don't matter) +* +direct azure 6100 0 0; +direct bronze 6101 0 0; +direct dadcad 6102 0 0; + +* +* machines in Beaverton reachable directly through the link adapter +* +direct cyber 2100 1100 0; +direct tekcad 2400 1100 0; +direct tekcrd 2201 1100 0; +direct tekid 2500 1100 0; +direct teklabs 2200 1100 0; + +* +* machines in Willsonville +* +gateway iddic tekcrd teklabs cyber tekcad tekid; +gateway iddme tekcrd teklabs cyber tekcad tekid; + +* +* machines on the beaverton auxiliary trunk +* (that the link adapter is not connected to) +* +gateway metals tekcrd teklabs cyber; -- 2.20.1