summaryrefslogtreecommitdiff
path: root/usr.bin/tip/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2010-06-29 16:41:58 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2010-06-29 16:41:58 +0000
commitb3edb9879a3bc199405b037a900f316d4f77e005 (patch)
treef014b2eea07d8afadc4b3d3c7cf020ee731ec9bb /usr.bin/tip/Makefile
parent7e2ce9013f05c75e01cb40373c07987f0ef38c18 (diff)
Bye-bye acu which even UUCP-using naddy agrees "was obsolete 20 years ago" :-).
Diffstat (limited to 'usr.bin/tip/Makefile')
-rw-r--r--usr.bin/tip/Makefile31
1 files changed, 4 insertions, 27 deletions
diff --git a/usr.bin/tip/Makefile b/usr.bin/tip/Makefile
index 9cfce293f3f..e83ece49908 100644
--- a/usr.bin/tip/Makefile
+++ b/usr.bin/tip/Makefile
@@ -1,27 +1,12 @@
-# $OpenBSD: Makefile,v 1.11 2006/05/25 08:41:52 jmc Exp $
+# $OpenBSD: Makefile,v 1.12 2010/06/29 16:41:56 nicm Exp $
#
# Files are:
# /etc/remote remote host description file
-# /etc/phones phone number file, owned by ${OWNER} and
-# mode 6??
# /var/log/aculog ACU accounting file, owned by ${OWNER} and
# mode 6?? {if ACULOG defined}
-# Presently supports:
-# BIZCOMP
-# DEC DF02-AC, DF03-AC
-# DEC DN-11/Able Quadracall
-# HAYES and Hayes emulators
-# USR COURIER (2400 baud)
-# VENTEL 212+
-# VADIC 831 RS232 adaptor
-# VADIC 3451
-# TELEBIT T3000
#
# Configuration defines:
-# DF02, DF03, DN11 ACU's supported
-# BIZ1031, BIZ1022, VENTEL, V831, V3451, HAYES, COURIER, T3000
# ACULOG turn on tip logging of ACU use
-# PRISTINE no phone #'s put in ACU log file
# CONNECT worthless command
# DEFBR default baud rate to make connection at
# DEFFS default frame size for FTP buffering of
@@ -33,16 +18,8 @@
PROG= tip
LINKS= ${BINDIR}/tip ${BINDIR}/cu
MAN= tip.1 cu.1
-CFLAGS+=-I${.CURDIR} -DDEFBR=9600 -DDEFFS=BUFSIZ -DACULOG -DPRISTINE \
- -DCONNECT -DV831 -DVENTEL -DHAYES -DCOURIER -DT3000
-.PATH: ${.CURDIR}/aculib
-SRCS= acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c \
- remote.c tip.c tipout.c uucplock.c value.c vars.c \
- biz22.c courier.c df.c dn11.c hayes.c t3000.c v3451.c v831.c ventel.c
-
-# -- acutab is configuration dependent, and so depends on the Makefile
-# -- remote.o depends on the Makefile because of DEFBR and DEFFS
-# -- log.o depends on the Makefile because of ACULOG
-acutab.o log.o remote.o: Makefile
+CFLAGS+=-I${.CURDIR} -DDEFBR=9600 -DDEFFS=BUFSIZ -DACULOG -DCONNECT
+SRCS= cmds.c cmdtab.c cu.c hunt.c log.c partab.c remote.c tip.c \
+ tipout.c uucplock.c value.c vars.c
.include <bsd.prog.mk>