+ifeq ($(IS_TTY),1)
+ define progress
+ printf "\033[M\r$(1)" >&2;
+ endef
+endif
+
+define dumpinfo
+ @mkdir -p tmp
+ @echo -n Collecting $(2) info...
+ @-for dir in $(1)/*/; do \
+ [ -f "$${dir}/Makefile" ] || continue; \
+ $(call progress,Collecting $(2) info: $${dir%%/}) \