chore: external dir
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run

This commit is contained in:
d0p1 🏳️‍⚧️ 2024-03-24 09:04:27 +01:00
parent 74e09f7b33
commit 2b425caf5f

11
external/Makefile vendored Normal file
View file

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