diff options
author | Louie S <louie@example.com> | 2023-09-15 09:50:45 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-09-15 09:50:45 -0400 |
commit | e7eda80bcdf575188ab98a4454a4515217967990 (patch) | |
tree | 97a25659832d089da8487500a35e34299a146459 /Makefile | |
parent | a1c45a5d707095f503ff94981d91bfceb26f14c4 (diff) |
Add multiboot target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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 |