minix/drivers/tty/Makefile
Arun Thomas 93ae43f577 boot: Add multiboot support
Not yet fully spec-compliant; work in progress
2011-06-24 17:21:51 +02:00

21 lines
349 B
Makefile

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