blob: 04d140a980cb33f35d8d1d5711eb2d5a12aec10a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: Makefile,v 1.18 2009/03/16 02:24:56 lukem Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
WARNS?= 2 # XXX: many const & sign-compare issues
PROG= getty
SRCS= main.c init.c subr.c
DPADD+= ${LIBUTIL} ${LIBTERMCAP}
LDADD+= -lutil -ltermcap
MAN= getty.8 gettytab.5 ttys.5
.include <bsd.prog.mk>
|