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 =
2024-12-30 19:44:57 +00:00
.PHONY: $(TOPGOALS)
$(TOPGOALS): $(SUBDIRS)
2024-03-24 08:04:27 +00:00
.PHONY: $(SUBDIRS)
$(SUBDIRS):
@echo "📁 external/$@"
@DESTDIR=$(DESTDIR) $(MAKE) -C $@ $(MAKECMDGOALS)