007104d60e
-Set stack sizes for boot image processes -Increase RS stack size -Reduce ramdisk size -HARDWARE task should use kernel stack -Minor asm tweaks for leading underscores
22 lines
368 B
Makefile
22 lines
368 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+= ${LIBDRIVER} ${LIBSYS} ${LIBTIMERS}
|
|
LDADD+= -ldriver -lsys -ltimers
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /sbin
|
|
INSTALLFLAGS+= -S 16k
|
|
|
|
SUBDIR= keymaps
|
|
|
|
# Needs kernel/const.h, etc
|
|
CPPFLAGS+= -I${MINIXSRCDIR}
|
|
|
|
.include <minix.prog.mk>
|
|
.include <minix.subdir.mk>
|