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