9 lines
186 B
Makefile
9 lines
186 B
Makefile
|
# Makefile for pseudo terminal driver (PTY)
|
||
|
PROG= pty
|
||
|
SRCS= tty.c pty.c
|
||
|
|
||
|
DPADD+= ${LIBCHARDRIVER} ${LIBSYS} ${LIBTIMERS}
|
||
|
LDADD+= -lchardriver -lsys -ltimers
|
||
|
|
||
|
.include <minix.service.mk>
|