StupidOS/modules/Makefile

12 lines
196 B
Makefile
Raw Normal View History

2024-07-08 07:03:39 +00:00
TOPGOALS = all clean install
SUBDIRS = dummy
.PHONY: $(SUBDIRS)
$(SUBDIRS):
@echo "📁 boot/$@"
@DESTDIR=$(DESTDIR) $(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPGOALS)
$(TOPGOALS): $(SUBDIRS)