d0p1
74e09f7b33
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run
11 lines
210 B
Makefile
11 lines
210 B
Makefile
TOPGOALS = all clean install
|
|
|
|
SUBDIRS = bootsect loader efi
|
|
|
|
.PHONY: $(SUBDIRS)
|
|
$(SUBDIRS):
|
|
@echo "📁 boot/$@"
|
|
@DESTDIR=$(DESTDIR) $(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
.PHONY: $(TOPGOALS)
|
|
$(TOPGOALS): $(SUBDIRS)
|