2006-05-12 03:16:28 +04:00
|
|
|
# $NetBSD: Makefile,v 1.14 2006/05/11 23:16:29 mrg Exp $
|
1994-08-18 00:10:27 +04:00
|
|
|
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
PROG= getty
|
1997-10-20 03:46:07 +04:00
|
|
|
LINKS= ${BINDIR}/getty ${BINDIR}/uugetty
|
1994-03-09 07:59:55 +03:00
|
|
|
SRCS= main.c init.c subr.c
|
2000-12-29 01:18:27 +03:00
|
|
|
DPADD+= ${LIBUTIL} ${LIBTERMCAP}
|
|
|
|
LDADD+= -lutil -ltermcap
|
1994-12-22 12:57:51 +03:00
|
|
|
MAN= getty.8 gettytab.5 ttys.5
|
1998-03-28 09:10:32 +03:00
|
|
|
MLINKS+=getty.8 uugetty.8
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|
2006-05-12 03:16:28 +04:00
|
|
|
|
|
|
|
.if ${HAVE_GCC} == 4
|
|
|
|
.for f in init subr
|
|
|
|
COPTS.${f}.c+= -Wno-pointer-sign
|
|
|
|
.endfor
|
|
|
|
.endif
|