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