blob: 1133f599e30410b4ecc623393887a26670d0ba42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: Makefile,v 1.14 2006/05/11 23:16:29 mrg Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
PROG= getty
LINKS= ${BINDIR}/getty ${BINDIR}/uugetty
SRCS= main.c init.c subr.c
DPADD+= ${LIBUTIL} ${LIBTERMCAP}
LDADD+= -lutil -ltermcap
MAN= getty.8 gettytab.5 ttys.5
MLINKS+=getty.8 uugetty.8
.include <bsd.prog.mk>
.if ${HAVE_GCC} == 4
.for f in init subr
COPTS.${f}.c+= -Wno-pointer-sign
.endfor
.endif
|