diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,7 +1,11 @@ CARGO ?= cargo +CC ?= gcc + .PHONY: all build run clean fmt check install + + all: build build: @@ -19,5 +23,9 @@ fmt: check: $(CARGO) check +kmod: + make -f src/non_critical/kern_panic/Makefile build + install: - mv target/debug/suicidekit /usr/local/bin/suicidekit
\ No newline at end of file + mv target/debug/suicidekit /usr/local/bin/suicidekit + make -f src/non_critical/kern_panic/Makefile install
\ No newline at end of file |
