xref: /dragonfly/usr.bin/tip/Makefile (revision dccc281f3bb027117f8c2ef8f2130a4d20149f6a)
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??
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# tip.h (zzhack *) casts
22NO_STRICT_ALIASING=
23
24BINDIR?=  /usr/bin
25BINOWN=             uucp
26BINGRP=             dialer
27
28# XXX: there is some concern that `tip' in its current state shouldn't run
29#      SUID.  If it believed it should, the mode above may still no be proper.
30#BINMODE?=          4510
31
32.include <bsd.prog.mk>
33