From 321beb6b46716637923a58194dd3ee4fbede517f Mon Sep 17 00:00:00 2001 From: Gregory Minshall Date: Fri, 29 May 1987 00:26:47 -0800 Subject: [PATCH] New .h file; translate table in separate .o file. SCCS-vsn: usr.bin/tn3270/distribution/sys_dos/makefile 1.4 SCCS-vsn: usr.bin/tn3270/distribution/sys_dos/termout.c 1.8 --- .../usr.bin/tn3270/distribution/sys_dos/makefile | 15 +++++---------- .../usr.bin/tn3270/distribution/sys_dos/termout.c | 10 +++------- 2 files changed, 8 insertions(+), 17 deletions(-) diff --git a/usr/src/usr.bin/tn3270/distribution/sys_dos/makefile b/usr/src/usr.bin/tn3270/distribution/sys_dos/makefile index 75c33c367f..d032ebf412 100644 --- a/usr/src/usr.bin/tn3270/distribution/sys_dos/makefile +++ b/usr/src/usr.bin/tn3270/distribution/sys_dos/makefile @@ -24,7 +24,7 @@ screenlib: $(ALLO) ranlib screenlib clean: - rm -f $(ALLO) disp_asc.out errs makefile.bak screenlib + rm -f $(ALLO) errs makefile.bak screenlib print: ${PRINT} ${ALLC} ${ALLH} @@ -43,11 +43,6 @@ lint: .DEFAULT: sccs get $< -disp_asc.out: ../ctlr/ebc_disp.o - (cd ../tools; make mkdstoas $(MFLAGS) ) - -/bin/rm $@ - ../tools/mkdstoas > $@ - depend: grep '^#include' ${ALLC} ${ALLH} | grep -v '<' | \ sed -e 's/:[^"]*"\([^"]*\)".*/: \1/' \ @@ -66,8 +61,8 @@ depend: # DO NOT DELETE THIS LINE -termout.o: ../general.h ../telnet.ext ../ctlr/hostctlr.h ../ctlr/inbound.ext +termout.o: ../general/general.h ../telnet.ext ../ascii/disp_asc.h +termout.o: ../ascii/map3270.ext ../ctlr/hostctlr.h ../ctlr/inbound.ext termout.o: ../ctlr/oia.h ../ctlr/options.ext ../ctlr/outbound.ext -termout.o: ../ctlr/screen.h ../keyboard/map3270.ext ../system/globals.h video.h -termout.o: disp_asc.out -system.o: ../api/api.h spint.h +termout.o: ../ctlr/screen.h ../general/globals.h video.h +system.o: ../general/general.h ../api/api.h spint.h ../general/globals.h diff --git a/usr/src/usr.bin/tn3270/distribution/sys_dos/termout.c b/usr/src/usr.bin/tn3270/distribution/sys_dos/termout.c index ef3b89ece8..2bd2651084 100644 --- a/usr/src/usr.bin/tn3270/distribution/sys_dos/termout.c +++ b/usr/src/usr.bin/tn3270/distribution/sys_dos/termout.c @@ -30,6 +30,9 @@ static char sccsid[] = "@(#)outbound.c 3.1 10/29/86"; #include "../telnet.ext" +#include "../ascii/disp_asc.h" +#include "../ascii/map3270.ext" + #include "../ctlr/hostctlr.h" #include "../ctlr/inbound.ext" #include "../ctlr/oia.h" @@ -37,8 +40,6 @@ static char sccsid[] = "@(#)outbound.c 3.1 10/29/86"; #include "../ctlr/outbound.ext" #include "../ctlr/screen.h" -#include "../ascii/map3270.ext" - #include "../general/globals.h" #include "video.h" @@ -63,11 +64,6 @@ typedef struct { ScreenBuffer Screen[MAXNUMBERLINES*MAXNUMBERCOLUMNS]; ScreenBuffer saveScreen[sizeof Screen/sizeof Screen[0]]; - -/* Variables for transparent mode */ - -#include "disp_asc.out" - /* OurExitString - designed to keep us from going through infinite recursion */ -- 2.20.1