Radix cross Linux 3pp sources

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

343 Commits   0 Branches   0 Tags
b722b855 (kx 2023-04-06 10:05:53 +0300  1) 
b722b855 (kx 2023-04-06 10:05:53 +0300  2) #
b722b855 (kx 2023-04-06 10:05:53 +0300  3) # Following command helps to cheate SUBDIRS list:
b722b855 (kx 2023-04-06 10:05:53 +0300  4) # $ tree -fid .
b722b855 (kx 2023-04-06 10:05:53 +0300  5) #
b722b855 (kx 2023-04-06 10:05:53 +0300  6) 
b722b855 (kx 2023-04-06 10:05:53 +0300  7) SUBDIRS := wayland           \
b722b855 (kx 2023-04-06 10:05:53 +0300  8)            wayland-protocols \
b722b855 (kx 2023-04-06 10:05:53 +0300  9)            wayland-utils     \
b722b855 (kx 2023-04-06 10:05:53 +0300 10)            weston
b722b855 (kx 2023-04-06 10:05:53 +0300 11) 
b722b855 (kx 2023-04-06 10:05:53 +0300 12) 
b722b855 (kx 2023-04-06 10:05:53 +0300 13) all-recursive downloads_clean-recursive:
b722b855 (kx 2023-04-06 10:05:53 +0300 14) 	@set fnord $(MAKEFLAGS); amf=$$2; \
b722b855 (kx 2023-04-06 10:05:53 +0300 15) 	target=`echo $@ | sed s/-recursive//`; \
b722b855 (kx 2023-04-06 10:05:53 +0300 16) 	list='$(SUBDIRS)'; for subdir in $$list; do \
b722b855 (kx 2023-04-06 10:05:53 +0300 17) 	  echo "Making $$target in $$subdir"; \
b722b855 (kx 2023-04-06 10:05:53 +0300 18) 	  local_target="$$target"; \
b722b855 (kx 2023-04-06 10:05:53 +0300 19) 	  (cd $$subdir && $(MAKE) $$fnord $$local_target) \
b722b855 (kx 2023-04-06 10:05:53 +0300 20) 	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
b722b855 (kx 2023-04-06 10:05:53 +0300 21) 	done; test -z "$$fail"
b722b855 (kx 2023-04-06 10:05:53 +0300 22) 
b722b855 (kx 2023-04-06 10:05:53 +0300 23) all: all-recursive
b722b855 (kx 2023-04-06 10:05:53 +0300 24) 
b722b855 (kx 2023-04-06 10:05:53 +0300 25) downloads_clean: downloads_clean-recursive
b722b855 (kx 2023-04-06 10:05:53 +0300 26) 
b722b855 (kx 2023-04-06 10:05:53 +0300 27) .PHONY: all-recursive downloads_clean-recursive all downloads_clean