11.28Slukem#	$NetBSD: Makefile,v 1.28 2009/04/14 22:15:27 lukem 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# Presently supports:
91.1Scgd#	BIZCOMP
101.1Scgd#	DEC DF02-AC, DF03-AC
111.1Scgd#	DEC DN-11/Able Quadracall
121.1Scgd#	HAYES and Hayes emulators
131.1Scgd#	USR COURIER (2400 baud)
141.1Scgd#	VENTEL 212+
151.1Scgd#	VADIC 831 RS232 adaptor
161.1Scgd#	VADIC 3451
171.4Sjtc#	TELEBIT T3000
181.1Scgd#
191.1Scgd# Configuration defines:
201.1Scgd#	DF02, DF03, DN11	ACU's supported
211.4Sjtc#	  BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER, T3000
221.1Scgd#	DEFBR			default baud rate to make connection at
231.1Scgd#	DEFFS			default frame size for FTP buffering of
241.1Scgd#				writes on local side
251.1Scgd#	BUFSIZ			buffer sizing from stdio, must be fed
261.1Scgd#				explicitly to remcap.c if not 1024
271.1Scgd
281.26Schristos.include <bsd.own.mk>
291.26Schristos
301.1ScgdPROG=	tip
311.23SyamtLINKS=	${BINDIR}/tip ${BINDIR}/cu
321.20StlsMLINKS=	tip.1 cu.1
331.11SlukemCPPFLAGS+=-I${.CURDIR} \
341.19Stls	-DDEFBR=9600 -DDEFFS=BUFSIZ -DHAYES \
351.21Sperry	#-DV831 -DVENTEL -DHAYES -DCOURIER -DT3000
361.7Sgwr.PATH:	${.CURDIR}/aculib
371.22Sperry
381.22Sperry# Dialers we can choose from:
391.22Sperry# biz22.c courier.c df.c dn11.c hayes.c t3000.c v3451.c v831.c ventel.c
401.22SperryDIALSRCS = hayes.c
411.22Sperry
421.17StlsSRCS=	acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c partab.c \
431.22Sperry	remote.c tip.c tipout.c value.c vars.c ${DIALSRCS}
441.1Scgd
451.1Scgd# -- acutab is configuration dependent, and so depends on the Makefile
461.1Scgd# -- remote.o depends on the Makefile because of DEFBR and DEFFS
471.21Sperryacutab.o remote.o: Makefile
481.1Scgd
491.1Scgd.include <bsd.prog.mk>
50