StupidOS/external/Makefile
d0p1 🏳️‍⚧️ 2b425caf5f
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run
chore: external dir
2024-03-24 09:04:27 +01:00

12 lines
194 B
Makefile

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