Radix cross Linux 3pp sources

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

343 Commits   0 Branches   0 Tags
2992f3e0 (kx 2023-04-06 10:43:27 +0300  1) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300  2) #
2992f3e0 (kx 2023-04-06 10:43:27 +0300  3) # Following command helps to cheate SUBDIRS list:
2992f3e0 (kx 2023-04-06 10:43:27 +0300  4) # $ tree -fid .
2992f3e0 (kx 2023-04-06 10:43:27 +0300  5) #
2992f3e0 (kx 2023-04-06 10:43:27 +0300  6) 
19dc4c5d (kx 2023-04-11 06:54:40 +0300  7) SUBDIRS := a \
19dc4c5d (kx 2023-04-11 06:54:40 +0300  8)            b \
56d70fdf (kx 2023-04-07 08:50:38 +0300  9)            d \
bc12d811 (kx 2023-04-08 11:40:58 +0300 10)            j \
3dd19145 (kx 2023-04-09 03:24:10 +0300 11)            l \
8da99f0d (kx 2023-04-08 21:49:09 +0300 12)            m \
8b7e76c7 (kx 2023-04-09 23:18:24 +0300 13)            n \
0e78a1d8 (kx 2023-04-07 07:48:17 +0300 14)            s \
d8b69aa4 (kx 2023-04-07 15:29:50 +0300 15)            x \
210fa86e (kx 2023-04-06 20:43:54 +0300 16)            y
2992f3e0 (kx 2023-04-06 10:43:27 +0300 17) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 18) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 19) all-recursive downloads_clean-recursive:
2992f3e0 (kx 2023-04-06 10:43:27 +0300 20) 	@set fnord $(MAKEFLAGS); amf=$$2; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 21) 	target=`echo $@ | sed s/-recursive//`; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 22) 	list='$(SUBDIRS)'; for subdir in $$list; do \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 23) 	  echo "Making $$target in $$subdir"; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 24) 	  local_target="$$target"; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 25) 	  (cd $$subdir && $(MAKE) $$fnord $$local_target) \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 26) 	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 27) 	done; test -z "$$fail"
2992f3e0 (kx 2023-04-06 10:43:27 +0300 28) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 29) all: all-recursive
2992f3e0 (kx 2023-04-06 10:43:27 +0300 30) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 31) downloads_clean: downloads_clean-recursive
2992f3e0 (kx 2023-04-06 10:43:27 +0300 32) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 33) .PHONY: all-recursive downloads_clean-recursive all downloads_clean