Makefile revision 1.4
11.4Sjtc#	$NetBSD: Makefile,v 1.4 1994/12/08 09:30:36 jtc Exp $
21.4Sjtc#	@(#)Makefile	8.1 (Berkeley) 6/6/93
31.1Scgd#
41.1Scgd# Files are:
51.1Scgd#	/etc/remote		remote host description file
61.1Scgd#	/etc/phones		phone number file, owned by ${OWNER} and
71.1Scgd#				mode 6??
81.1Scgd#	/var/log/aculog		ACU accounting file, owned by ${OWNER} and
91.1Scgd#				mode 6?? {if ACULOG defined}
101.1Scgd# Presently supports:
111.1Scgd#	BIZCOMP
121.1Scgd#	DEC DF02-AC, DF03-AC
131.1Scgd#	DEC DN-11/Able Quadracall
141.1Scgd#	HAYES and Hayes emulators
151.1Scgd#	USR COURIER (2400 baud)
161.1Scgd#	VENTEL 212+
171.1Scgd#	VADIC 831 RS232 adaptor
181.1Scgd#	VADIC 3451
191.4Sjtc#	TELEBIT T3000
201.1Scgd#
211.1Scgd# Configuration defines:
221.1Scgd#	DF02, DF03, DN11	ACU's supported
231.4Sjtc#	  BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER, T3000
241.1Scgd#	ACULOG			turn on tip logging of ACU use
251.1Scgd#	PRISTINE		no phone #'s put in ACU log file
261.1Scgd#	CONNECT			worthless command
271.1Scgd#	DEFBR			default baud rate to make connection at
281.1Scgd#	DEFFS			default frame size for FTP buffering of
291.1Scgd#				writes on local side
301.1Scgd#	BUFSIZ			buffer sizing from stdio, must be fed
311.1Scgd#				explicitly to remcap.c if not 1024
321.4Sjtc#	CONNECT			enable ~C command (connect pgm to remote)
331.1Scgd
341.1ScgdPROG=	tip
351.4SjtcCFLAGS+=-I${.CURDIR} \
361.4Sjtc	-DDEFBR=1200 -DDEFFS=BUFSIZ -DACULOG -DPRISTINE -DCONNECT \
371.4Sjtc	-DV831 -DVENTEL -DHAYES -DCOURIER -DT3000
381.1Scgd.PATH:	${.CURDIR}/aculib
391.1ScgdBINOWN=	uucp
401.1ScgdBINGRP=	dialer
411.1ScgdBINMODE=4510
421.4SjtcSRCS=	acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c \
431.4Sjtc	remote.c tip.c tipout.c uucplock.c value.c vars.c \
441.4Sjtc	biz22.c courier.c df.c dn11.c hayes.c t3000.c v3451.c v831.c ventel.c
451.1Scgd
461.1Scgd# -- acutab is configuration dependent, and so depends on the Makefile
471.1Scgd# -- remote.o depends on the Makefile because of DEFBR and DEFFS
481.1Scgd# -- log.o depends on the Makefile because of ACULOG
491.1Scgdacutab.o log.o remote.o: Makefile
501.1Scgd
511.1Scgd.include <bsd.prog.mk>
52