xref: /dragonfly/usr.bin/tip/Makefile (revision 0db87cb7)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: src/usr.bin/tip/tip/Makefile,v 1.10.6.3 2002/07/17 13:25:19 ru Exp $
3#
4# Files are:
5#	/etc/remote		remote host description file
6#	/etc/phones		phone number file, owned by ${OWNER} and
7#				mode 6??
8#	/var/log/aculog		ACU accounting file, owned by ${OWNER} and
9#				mode 6?? {if ACULOG defined}
10
11PROG=	tip
12DPADD=	${LIBUTIL}
13LDADD=	-lutil
14LINKS=  ${BINDIR}/tip ${BINDIR}/cu
15MLINKS= tip.1 cu.1
16MAN=	tip.1 modems.5
17SRCS=	acu.c acucommon.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c \
18	remote.c tip.c tipout.c tod.c unidialer.c value.c vars.c
19
20WARNS?=	2
21
22BINDIR?=	/usr/bin
23BINOWN=		uucp
24BINGRP=		dialer
25
26# XXX: there is some concern that `tip' in its current state shouldn't run
27#      SUID.  If it believed it should, the mode above may still no be proper.
28#BINMODE?=	4510
29
30.include <bsd.prog.mk>
31