Makefile revision 1.1
11.1Scgd# @(#)Makefile 5.9 (Berkeley) 5/11/90 21.1Scgd# 31.1Scgd# Files are: 41.1Scgd# /etc/remote remote host description file 51.1Scgd# /etc/phones phone number file, owned by ${OWNER} and 61.1Scgd# mode 6?? 71.1Scgd# /var/log/aculog ACU accounting file, owned by ${OWNER} and 81.1Scgd# mode 6?? {if ACULOG defined} 91.1Scgd# Presently supports: 101.1Scgd# BIZCOMP 111.1Scgd# DEC DF02-AC, DF03-AC 121.1Scgd# DEC DN-11/Able Quadracall 131.1Scgd# HAYES and Hayes emulators 141.1Scgd# USR COURIER (2400 baud) 151.1Scgd# VENTEL 212+ 161.1Scgd# VADIC 831 RS232 adaptor 171.1Scgd# VADIC 3451 181.1Scgd# 191.1Scgd# Configuration defines: 201.1Scgd# DF02, DF03, DN11 ACU's supported 211.1Scgd# BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER 221.1Scgd# ACULOG turn on tip logging of ACU use 231.1Scgd# PRISTINE no phone #'s put in ACU log file 241.1Scgd# CONNECT worthless command 251.1Scgd# DEFBR default baud rate to make connection at 261.1Scgd# DEFFS default frame size for FTP buffering of 271.1Scgd# writes on local side 281.1Scgd# BUFSIZ buffer sizing from stdio, must be fed 291.1Scgd# explicitly to remcap.c if not 1024 301.1Scgd 311.1ScgdPROG= tip 321.1ScgdCFLAGS+=-I${.CURDIR} -DV831 -DVENTEL -DHAYES -DCOURIER -DDEFBR=2400 \ 331.1Scgd -DDEFFS=BUFSIZ -DACULOG -DPRISTINE -DCONNECT 341.1Scgd.PATH: ${.CURDIR}/aculib 351.1ScgdBINOWN= uucp 361.1ScgdBINGRP= dialer 371.1ScgdBINMODE=4510 381.1ScgdLINKS= ${BINDIR}/tip ${BINDIR}/cu 391.1ScgdMLINKS= tip.1 cu.1 401.1ScgdSRCS= acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c remcap.c \ 411.1Scgd remote.c tip.c tipout.c uucplock.c value.c vars.c biz22.c courier.c \ 421.1Scgd df.c dn11.c hayes.c v3451.c v831.c ventel.c 431.1Scgd 441.1Scgd# -- acutab is configuration dependent, and so depends on the Makefile 451.1Scgd# -- remote.o depends on the Makefile because of DEFBR and DEFFS 461.1Scgd# -- log.o depends on the Makefile because of ACULOG 471.1Scgdacutab.o log.o remote.o: Makefile 481.1Scgd 491.1Scgd.include <bsd.prog.mk> 50