PRIV: Add global PRIVATELIB_CFLAGS.
[dragonfly.git] / usr.bin / tip / Makefile
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
11 PROG=   tip
12 DPADD=  ${LIBUTIL}
13 LDADD=  -lutil
14 LINKS=  ${BINDIR}/tip ${BINDIR}/cu
15 MLINKS= tip.1 cu.1
16 MAN=    tip.1 modems.5
17 SRCS=   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
20 WARNS?= 2
21 # tip.h (zzhack *) casts
22 NO_STRICT_ALIASING=
23
24 BINDIR?=        /usr/bin
25 BINOWN=         uucp
26 BINGRP=         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>