Makefile revision 1.14
1# $NetBSD: Makefile,v 1.14 2006/05/11 23:16:29 mrg Exp $ 2# from: @(#)Makefile 8.1 (Berkeley) 6/4/93 3 4PROG= getty 5LINKS= ${BINDIR}/getty ${BINDIR}/uugetty 6SRCS= main.c init.c subr.c 7DPADD+= ${LIBUTIL} ${LIBTERMCAP} 8LDADD+= -lutil -ltermcap 9MAN= getty.8 gettytab.5 ttys.5 10MLINKS+=getty.8 uugetty.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