aboutsummaryrefslogtreecommitdiff
path: root/devices/Makefile
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-10-31 15:39:51 +0200
committeraqua <aqua@iserlohn-fortress.net>2022-10-31 21:59:49 +0200
commitcbd3cdf7cb34529e269bb27c654765a0c9c21799 (patch)
tree4ee555d5cb575af003e10e597666b4a7b17b17a7 /devices/Makefile
parentmakefile: auto-generate OBJS from SRCS (diff)
downloadkernel-cbd3cdf7cb34529e269bb27c654765a0c9c21799.tar.xz
add ps2_keyboard driver
Diffstat (limited to 'devices/Makefile')
-rw-r--r--devices/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devices/Makefile b/devices/Makefile
index 41edaaa..0e07a83 100644
--- a/devices/Makefile
+++ b/devices/Makefile
@@ -1,10 +1,10 @@
include ../${ARCH}/toolchain.mk
-CCFLAGS += -I. -I../${ARCH}
+CCFLAGS += -I. -I../${ARCH} -I../lib
all: devs.a
-devs,SRCS = pic_8259.c uart_16550.c vga.c
+devs,SRCS = pic_8259.c uart_16550.c vga.c ps2_keyboard.c
include ../rules.mk