minix/drivers/tty/Makefile
2012-02-16 23:26:38 +01:00

20 lines
305 B
Makefile

# Makefile for terminal driver (TTY)
PROG= tty
SRCS= tty.c console.c keyboard.c pty.c rs232.c
DPADD+= ${LIBSYS} ${LIBTIMERS}
LDADD+= -lsys -ltimers
MAN=
BINDIR?= /usr/sbin
SUBDIR= keymaps
# Needs kernel/const.h, etc
CPPFLAGS+= -I${MINIXSRCDIR}
.include <minix.bootprog.mk>
.include <bsd.subdir.mk>