summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClément Sibille <claymeuns@protonmail.com>2021-10-10 21:00:46 +0200
committerClément Sibille <claymeuns@protonmail.com>2021-10-10 21:00:46 +0200
commite07849e8be4318d6fe39542e3c44555b6a242f14 (patch)
treee48856854fe5c85623489dbfc4b6ac90241d0ad2 /Makefile
parent73338c2d453e7a5928fa7f392e1bc2392dbba3cd (diff)
Add .PHONY to MakefileHEADmain
Diffstat (limited to '')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ef62203..9ed7360 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,8 @@
all: target/kernel.o
-clean_run: | clean run
+.PHONY: clean run
+
+clean_run: clean run
run: target/kernel.o
qemu-system-i386 -kernel $< -machine type=pc-i440fx-3.1 -serial mon:stdio
Go back to lisible.xyz