xref: /minix/libexec/getty/Makefile (revision a06e2ab3)
1#	$NetBSD: Makefile,v 1.19 2010/02/03 15:34:43 roy Exp $
2#	from: @(#)Makefile	8.1 (Berkeley) 6/4/93
3
4WARNS?=	2	# XXX: many const & sign-compare issues
5
6PROG=	getty
7SRCS=	main.c init.c subr.c
8DPADD+=	${LIBUTIL} ${LIBTERMINFO}
9LDADD+=	-lutil -lterminfo
10MAN=	getty.8 gettytab.5 ttys.5
11
12.include <bsd.prog.mk>
13