summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 24c4d02..c57983c 100644
--- a/Makefile
+++ b/Makefile
@@ -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