minix/drivers/tty/Makefile
Arun Thomas 007104d60e GCC build fixes/updates
-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
2010-05-26 18:45:55 +00:00

23 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>