mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-12 14:29:28 +00:00
26 lines
624 B
Makefile
26 lines
624 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
#
|
|
# 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}
|
|
|
|
.if exists(${.OBJDIR}/../libacu)
|
|
LIBACU=${.OBJDIR}/../libacu/libacu.a
|
|
.else
|
|
LIBACU=${.CURDIR}/../libacu/libacu.a
|
|
.endif
|
|
|
|
PROG= tip
|
|
DPADD= ${LIBACU} ${LIBUTIL}
|
|
LDADD= ${LIBACU} -lutil
|
|
LINKS= ${BINDIR}/tip
|
|
MAN1= tip.1
|
|
MAN5= modems.5
|
|
SRCS= acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c \
|
|
remote.c tip.c tipout.c value.c vars.c
|
|
|
|
.include <bsd.prog.mk>
|