1# from: @(#)Makefile 8.1 (Berkeley) 6/4/93 2# $FreeBSD$ 3 4PROG= getty 5SRCS= main.c init.c subr.c chat.c 6DPADD= ${LIBUTIL} 7LDADD= -lutil 8MAN5= gettytab.5 ttys.5 9MAN8= getty.8 10# for the paranoid: 11#CFLAGS+= -Wall -Wstrict-prototypes -Wno-unused -Wwrite-strings 12 13.include <bsd.prog.mk> 14 15