StupidOS/external/Makefile

11 lines
194 B
Makefile

TOPGOALS = all clean install
SUBDIRS =
.PHONY: $(TOPGOALS)
$(TOPGOALS): $(SUBDIRS)
.PHONY: $(SUBDIRS)
$(SUBDIRS):
@echo "📁 external/$@"
@DESTDIR=$(DESTDIR) $(MAKE) -C $@ $(MAKECMDGOALS)