Radix cross Linux 3pp sources

RcL sources – is a tree of Third Party and Radix source tarballs

423 Commits   0 Branches   0 Tags
author: kx <kx@radix.pro> 2023-12-10 12:08:22 +0300 committer: kx <kx@radix.pro> 2023-12-10 12:08:22 +0300 commit: 4565416880fd96e7841ade938c17c2606915b484 parent: 7843b3f52f42cb701d5d62d21be6e5e85f9c137c
Commit Summary:
MATE-1.27
Diffstat:
1 file changed, 17 insertions, 0 deletions
diff --git a/MATE/Makefile b/MATE/Makefile
new file mode 100644
index 0000000..43f4093
--- /dev/null
+++ b/MATE/Makefile
@@ -0,0 +1,24 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := 1.27
+
+
+all-recursive downloads_clean-recursive:
+	@set fnord $(MAKEFLAGS); amf=$$2; \
+	target=`echo $@ | sed s/-recursive//`; \
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  echo "Making $$target in $$subdir"; \
+	  local_target="$$target"; \
+	  (cd $$subdir && $(MAKE) $$fnord $$local_target) \
+	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+	done; test -z "$$fail"
+
+all: all-recursive
+
+downloads_clean: downloads_clean-recursive
+
+.PHONY: all-recursive downloads_clean-recursive all downloads_clean