summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4441263..1d5571a 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@ out/obj/%.c.o: src/%.c
$(CC) $(CFLAGS) -c $^ -o $@
-.PHONY: boot debug clean
+.PHONY: boot debug lint clean
boot: out/fs/boot/kernel.bin
qemu-system-i386 -kernel $< $(QFLAGS) -no-shutdown
@@ -39,5 +39,8 @@ debug: out/fs/boot/kernel.bin
sleep 1
gdb
+lint:
+ @tools/linter/main.rb
+
clean:
rm -rv out/