minix/drivers/tty/Makefile
Arun Thomas 436d6012a3 Convert drivers/ and servers/ over to bsdmake
-Move libdriver to lib/
-Install all boot image services on filesystem to aid restartability
2010-03-22 21:25:22 +00:00

22 lines
321 B
Makefile

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