StupidOS/boot/Makefile

12 lines
210 B
Makefile
Raw Normal View History

TOPGOALS = all clean install
2024-03-21 10:42:18 +00:00
SUBDIRS = bootsect loader efi
2024-03-21 10:42:18 +00:00
.PHONY: $(SUBDIRS)
$(SUBDIRS):
@echo "📁 boot/$@"
@DESTDIR=$(DESTDIR) $(MAKE) -C $@ $(MAKECMDGOALS)
2024-03-21 10:42:18 +00:00
.PHONY: $(TOPGOALS)
$(TOPGOALS): $(SUBDIRS)