436d6012a3
-Move libdriver to lib/ -Install all boot image services on filesystem to aid restartability
21 lines
321 B
Makefile
21 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>
|