From e7eda80bcdf575188ab98a4454a4515217967990 Mon Sep 17 00:00:00 2001 From: Louie S Date: Fri, 15 Sep 2023 09:50:45 -0400 Subject: Add multiboot target --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ee98f27..6ad890e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -all: grub grub-dev +all: grub grub-dev multiboot grub: $(MAKE) -f grub-Makefile @@ -7,7 +7,15 @@ grub: grub-dev: $(MAKE) -f grub-dev-Makefile +multiboot: + $(MAKE) -f multiboot-Makefile + .PHONY: clean clean: $(MAKE) clean -f grub-Makefile $(MAKE) clean -f grub-dev-Makefile + $(MAKE) clean -f multiboot-Makefile + +.PHONY: dist-clean +dist-clean: clean + rm -rf tmp -- cgit