diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-11-03 15:22:55 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-11-03 15:22:55 +0000 |
commit | 2f089dff11daa9936fc599117e35ee39cf77f271 (patch) | |
tree | 87ccd46911e8742217fc6ab4607e97d313d34f57 /sbin/ldattach/Makefile | |
parent | 5c64f6f7434f9454799bce6568464c9e08bbbcad (diff) |
ldattach(8) is a command to attach line discipline to a tty line. It can
be used from the command line or from init(8) by adding an entry to the
/etc/ttys file. ldattach(8) can be extended to support new line disciplines.
feedback many, ok deraadt, mikeb
Diffstat (limited to 'sbin/ldattach/Makefile')
-rw-r--r-- | sbin/ldattach/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sbin/ldattach/Makefile b/sbin/ldattach/Makefile new file mode 100644 index 00000000000..fd297d48bf6 --- /dev/null +++ b/sbin/ldattach/Makefile @@ -0,0 +1,10 @@ +# $OpenBSD: Makefile,v 1.1 2007/11/03 15:22:54 mbalmer Exp $ + +PROG= ldattach +MAN= ldattach.8 + +CFLAGS+= -Wall -Werror + +BINDIR= /sbin + +.include <bsd.prog.mk> |