Files
mop3/kernel/device/src.mk
kamkow1 927d9e4c73
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m19s
Working PS/2 keyboard driver
2026-02-15 14:28:07 +01:00

11 lines
165 B
Makefile

c += device/device.c \
device/terminal.c
o += device/device.o \
device/terminal.o
ifeq ($(platform),amd64)
c += device/ps2_kb.c
o += device/ps2_kb.o
endif