Radix cross Linux 3pp sources

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

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