StupidOS/external/Makefile

12 lines
194 B
Makefile
Raw Permalink Normal View History

2024-03-24 08:04:27 +00:00
TOPGOALS = all clean install
SUBDIRS =
.PHONY: $(SUBDIRS)
$(SUBDIRS):
@echo "📁 external/$@"
@DESTDIR=$(DESTDIR) $(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPGOALS)
$(TOPGOALS): $(SUBDIRS)