diff options
author | Louie S <louie@example.com> | 2023-09-15 10:03:05 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-09-15 10:03:05 -0400 |
commit | 8b24f247ba26e77623a3d3d183b12b8eec849b8d (patch) | |
tree | 5827f3a477de307e4a43b56da75fa5046de9d6bc /Makefile | |
parent | e7eda80bcdf575188ab98a4454a4515217967990 (diff) |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |