Makefile revision 1.18
11.18Sperry#	$NetBSD: Makefile,v 1.18 2006/04/03 02:01:28 perry 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.16Stls	-DDEFBR=9600 -DDEFFS=BUFSIZ -DCONNECT \
381.16Stls	-DHAYES #-DV831 -DVENTEL -DHAYES -DCOURIER -DT3000 -DACULOG -DPRISTINE
391.7Sgwr.PATH:	${.CURDIR}/aculib
401.17StlsSRCS=	acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c partab.c \
411.18Sperry	remote.c tip.c tipout.c value.c vars.c \
421.17Stls	df.c hayes.c # log.c biz22.c courier.c dn11.c hayes.c t3000.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.16Stls# -- log.o, cu.o, acu.o, tip.o depend on the Makefile because of ACULOG
471.16Stlsacutab.o log.o cu.o acu.o tip.o remote.o: Makefile
481.1Scgd
491.1Scgd.include <bsd.prog.mk>
50