aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/Makefile')
-rw-r--r--kernel/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/kernel/Makefile b/kernel/Makefile
new file mode 100644
index 0000000..49a4d42
--- /dev/null
+++ b/kernel/Makefile
@@ -0,0 +1,12 @@
+all: debug
+
+debug:
+ cargo build
+
+release:
+ cargo build --release
+
+clean:
+ cargo clean
+
+.PHONY: all clean debug release