Makefile revision 1.13
11.13Schristos#	$NetBSD: Makefile,v 1.13 2006/03/16 23:25:17 christos 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.13SchristosWARNS=4
351.1ScgdPROG=	tip
361.11SlukemCPPFLAGS+=-I${.CURDIR} \
371.4Sjtc	-DDEFBR=1200 -DDEFFS=BUFSIZ -DACULOG -DPRISTINE -DCONNECT \
381.4Sjtc	-DV831 -DVENTEL -DHAYES -DCOURIER -DT3000
391.7Sgwr.PATH:	${.CURDIR}/aculib
401.1ScgdBINOWN=	uucp
411.1ScgdBINGRP=	dialer
421.8SmycroftBINMODE=4554
431.4SjtcSRCS=	acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c \
441.4Sjtc	remote.c tip.c tipout.c uucplock.c value.c vars.c \
451.4Sjtc	biz22.c courier.c df.c dn11.c hayes.c t3000.c v3451.c v831.c ventel.c
461.1Scgd
471.1Scgd# -- acutab is configuration dependent, and so depends on the Makefile
481.1Scgd# -- remote.o depends on the Makefile because of DEFBR and DEFFS
491.1Scgd# -- log.o depends on the Makefile because of ACULOG
501.1Scgdacutab.o log.o remote.o: Makefile
511.1Scgd
521.1Scgd.include <bsd.prog.mk>
53