diff --git a/external/Makefile b/external/Makefile new file mode 100644 index 0000000..fe9e021 --- /dev/null +++ b/external/Makefile @@ -0,0 +1,11 @@ +TOPGOALS = all clean install + +SUBDIRS = + +.PHONY: $(SUBDIRS) +$(SUBDIRS): + @echo "📁 external/$@" + @DESTDIR=$(DESTDIR) $(MAKE) -C $@ $(MAKECMDGOALS) + +.PHONY: $(TOPGOALS) +$(TOPGOALS): $(SUBDIRS)