Makefile revision 1.25
11.25Stron# $NetBSD: Makefile,v 1.25 2006/04/05 13:04:33 tron 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.13SchristosWARNS=4 291.1ScgdPROG= tip 301.25Stron.if !defined(MKUUCP) || ${MKUUCP} != no 311.23SyamtLINKS= ${BINDIR}/tip ${BINDIR}/cu 321.20StlsMLINKS= tip.1 cu.1 331.24Sdyoung.endif 341.11SlukemCPPFLAGS+=-I${.CURDIR} \ 351.19Stls -DDEFBR=9600 -DDEFFS=BUFSIZ -DHAYES \ 361.21Sperry #-DV831 -DVENTEL -DHAYES -DCOURIER -DT3000 371.7Sgwr.PATH: ${.CURDIR}/aculib 381.22Sperry 391.22Sperry# Dialers we can choose from: 401.22Sperry# biz22.c courier.c df.c dn11.c hayes.c t3000.c v3451.c v831.c ventel.c 411.22SperryDIALSRCS = hayes.c 421.22Sperry 431.17StlsSRCS= acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c partab.c \ 441.22Sperry remote.c tip.c tipout.c value.c vars.c ${DIALSRCS} 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.21Sperryacutab.o remote.o: Makefile 491.1Scgd 501.1Scgd.include <bsd.prog.mk> 51