minix/drivers/pty/Makefile
David van Moolenbroek 760f3d62d7 PTY: split off from TTY
Requires recreation of /dev/tty[pq]*, /dev/pty[pq]* device nodes.

Change-Id: I0e5a28d82faa934497fd3b97d619e506bcb5f439
2014-07-28 17:05:12 +02:00

14 lines
213 B
Makefile

# Makefile for pseudo terminal driver (PTY)
PROG= pty
SRCS= tty.c pty.c
DPADD+= ${LIBCHARDRIVER} ${LIBSYS} ${LIBTIMERS}
LDADD+= -lchardriver -lsys -ltimers
MAN=
BINDIR?= /usr/sbin
.include <minix.service.mk>