This commit was generated by cvs2svn to track changes on a CVS vendor
[unix-history] / usr.bin / tip / Makefile
CommitLineData
15637ed4
RG
1# @(#)Makefile 5.9 (Berkeley) 5/11/90
2#
3# Files are:
4# /etc/remote remote host description file
5# /etc/phones phone number file, owned by ${OWNER} and
6# mode 6??
7# /var/log/aculog ACU accounting file, owned by ${OWNER} and
8# mode 6?? {if ACULOG defined}
9# Presently supports:
10# BIZCOMP
11# DEC DF02-AC, DF03-AC
12# DEC DN-11/Able Quadracall
13# HAYES and Hayes emulators
14# USR COURIER (2400 baud)
15# VENTEL 212+
16# VADIC 831 RS232 adaptor
17# VADIC 3451
18#
19# Configuration defines:
20# DF02, DF03, DN11 ACU's supported
21# BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER
22# ACULOG turn on tip logging of ACU use
23# PRISTINE no phone #'s put in ACU log file
24# CONNECT worthless command
25# DEFBR default baud rate to make connection at
26# DEFFS default frame size for FTP buffering of
27# writes on local side
28# BUFSIZ buffer sizing from stdio, must be fed
29# explicitly to remcap.c if not 1024
fd820dbc
AM
30# PULSE_DIAL use pulse dialing instead of touch-tone
31# ATX5 basic responses w/BUSY signal detection
15637ed4
RG
32
33PROG= tip
34CFLAGS+=-I${.CURDIR} -DV831 -DVENTEL -DHAYES -DCOURIER -DDEFBR=2400 \
35 -DDEFFS=BUFSIZ -DACULOG -DPRISTINE -DCONNECT
36.PATH: ${.CURDIR}/aculib
37BINOWN= uucp
38BINGRP= dialer
39BINMODE=4510
e2195b56
C
40#LINKS= ${BINDIR}/tip ${BINDIR}/cu
41#MLINKS= tip.1 cu.1
15637ed4
RG
42SRCS= acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c remcap.c \
43 remote.c tip.c tipout.c uucplock.c value.c vars.c biz22.c courier.c \
44 df.c dn11.c hayes.c v3451.c v831.c ventel.c
45
46# -- acutab is configuration dependent, and so depends on the Makefile
47# -- remote.o depends on the Makefile because of DEFBR and DEFFS
48# -- log.o depends on the Makefile because of ACULOG
49acutab.o log.o remote.o: Makefile
50
51.include <bsd.prog.mk>