diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-11-03 17:45:28 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-11-03 17:45:28 +0200 |
commit | fd4f56e6776873af2693d4ddf1c672c36bd97428 (patch) | |
tree | d5482cf2754923ca1a9bfd1a6af669855858d33d /Makefile | |
parent | vga: fix text mode cursor (diff) | |
download | kernel-fd4f56e6776873af2693d4ddf1c672c36bd97428.tar.xz |
i8042: fix broken self-test
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,7 +3,7 @@ MAKEFLAGS += --no-print-directory include Makefile.config -.PHONY: all run clean FORCE +.PHONY: all run clean test FORCE all: glitch.elf run: glitch.iso @@ -24,6 +24,9 @@ info: @echo " LD $(shell ${LD} --version | head -n1)" @echo " ${LDFLAGS}" +test: + grep -r 'asm' devices lib src + FORCE: .config: Kconfig |