mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
COMPAT_43 cruft. This is supposedly the last core utility that has been using it! (So now, one should be able to remove this option from the config files. Be aware that the last officially released xterm however still requires it.) The getty has been running now for several weeks on my modem line, so i feel safe about it. Obtained from: mostly from the NetBSD vendor-branch
13 lines
319 B
Makefile
13 lines
319 B
Makefile
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $Id: Makefile,v 1.1.1.2 1996/04/13 15:33:02 joerg Exp $
|
|
|
|
PROG= getty
|
|
SRCS= main.c init.c subr.c
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
MAN5= gettytab.5 ttys.5
|
|
MAN8= getty.8
|
|
# for the paranoid:
|
|
#CFLAGS+= -Wall -Wstrict-prototypes -Wno-unused -Wwrite-strings
|
|
|
|
.include <bsd.prog.mk>
|