From: William F. Jolitz Date: Mon, 13 Jul 1992 10:23:18 +0000 (-0800) Subject: 386BSD 0.1 development X-Git-Tag: 386BSD-0.1~47 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/638231e6203d8d8447c87fcb959bb90da83f521f 386BSD 0.1 development Work on file usr/src/usr.bin/tip/Makefile Co-Authored-By: Lynne Greer Jolitz Synthesized-from: 386BSD-0.1 --- diff --git a/usr/src/usr.bin/tip/Makefile b/usr/src/usr.bin/tip/Makefile new file mode 100644 index 0000000000..e68e838b9c --- /dev/null +++ b/usr/src/usr.bin/tip/Makefile @@ -0,0 +1,49 @@ +# @(#)Makefile 5.9 (Berkeley) 5/11/90 +# +# Files are: +# /etc/remote remote host description file +# /etc/phones phone number file, owned by ${OWNER} and +# mode 6?? +# /var/log/aculog ACU accounting file, owned by ${OWNER} and +# mode 6?? {if ACULOG defined} +# Presently supports: +# BIZCOMP +# DEC DF02-AC, DF03-AC +# DEC DN-11/Able Quadracall +# HAYES and Hayes emulators +# USR COURIER (2400 baud) +# VENTEL 212+ +# VADIC 831 RS232 adaptor +# VADIC 3451 +# +# Configuration defines: +# DF02, DF03, DN11 ACU's supported +# BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER +# ACULOG turn on tip logging of ACU use +# PRISTINE no phone #'s put in ACU log file +# CONNECT worthless command +# DEFBR default baud rate to make connection at +# DEFFS default frame size for FTP buffering of +# writes on local side +# BUFSIZ buffer sizing from stdio, must be fed +# explicitly to remcap.c if not 1024 + +PROG= tip +CFLAGS+=-I${.CURDIR} -DV831 -DVENTEL -DHAYES -DCOURIER -DDEFBR=2400 \ + -DDEFFS=BUFSIZ -DACULOG -DPRISTINE -DCONNECT +.PATH: ${.CURDIR}/aculib +BINOWN= uucp +BINGRP= dialer +BINMODE=4510 +LINKS= ${BINDIR}/tip ${BINDIR}/cu +MLINKS= tip.1 cu.1 +SRCS= acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c remcap.c \ + remote.c tip.c tipout.c uucplock.c value.c vars.c biz22.c courier.c \ + df.c dn11.c hayes.c v3451.c v831.c ventel.c + +# -- acutab is configuration dependent, and so depends on the Makefile +# -- remote.o depends on the Makefile because of DEFBR and DEFFS +# -- log.o depends on the Makefile because of ACULOG +acutab.o log.o remote.o: Makefile + +.include