diff options
author | Louie S <louie@example.com> | 2023-09-14 16:21:14 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-09-14 16:21:14 -0400 |
commit | bd511f431b75f21e8290aa2527d6222467e56b20 (patch) | |
tree | 7b0c4ffae4f7e5eef51e5bf405a715341364b349 /Makefile |
First commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ff50444 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + +all: grub + +grub: + $(MAKE) -f grub-Makefile + +.PHONY: clean +clean: + $(MAKE) clean -f grub-Makefile |