summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-09-15 10:03:05 -0400
committerLouie S <louie@example.com>2023-09-15 10:03:05 -0400
commit8b24f247ba26e77623a3d3d183b12b8eec849b8d (patch)
tree5827f3a477de307e4a43b56da75fa5046de9d6bc /Makefile
parente7eda80bcdf575188ab98a4454a4515217967990 (diff)
Add multiboot2 targetHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6ad890e..cd1db41 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-all: grub grub-dev multiboot
+all: grub grub-dev multiboot multiboot2
grub:
$(MAKE) -f grub-Makefile
@@ -10,11 +10,15 @@ grub-dev:
multiboot:
$(MAKE) -f multiboot-Makefile
+multiboot2:
+ $(MAKE) -f multiboot2-Makefile
+
.PHONY: clean
clean:
$(MAKE) clean -f grub-Makefile
$(MAKE) clean -f grub-dev-Makefile
$(MAKE) clean -f multiboot-Makefile
+ $(MAKE) clean -f multiboot2-Makefile
.PHONY: dist-clean
dist-clean: clean