From 8b24f247ba26e77623a3d3d183b12b8eec849b8d Mon Sep 17 00:00:00 2001 From: Louie S Date: Fri, 15 Sep 2023 10:03:05 -0400 Subject: Add multiboot2 target --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit