9 lines
202 B
Makefile
9 lines
202 B
Makefile
|
# Makefile for the PC keyboard/mouse driver (PCKBD)
|
||
|
PROG= pckbd
|
||
|
SRCS= pckbd.c table.c
|
||
|
|
||
|
DPADD+= ${LIBINPUTDRIVER} ${LIBSYS} ${LIBTIMERS}
|
||
|
LDADD+= -linputdriver -lsys -ltimers
|
||
|
|
||
|
.include <minix.service.mk>
|