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) 
9344bb00 (kx 2023-04-06 19:18:36 +0300  7) SUBDIRS := GNOME    \
9344bb00 (kx 2023-04-06 19:18:36 +0300  8)            GNU      \
c9b87548 (kx 2023-04-06 16:08:32 +0300  9)            Linux    \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 10)            U-Boot   \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 11)            Wayland  \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 12)            X.org    \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 13)            dict     \
ffc59822 (kx 2023-04-15 20:09:24 +0300 14)            hal      \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 15)            iana     \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 16)            newlib   \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 17)            packages \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 18)            tools
2992f3e0 (kx 2023-04-06 10:43:27 +0300 19) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 20) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 21) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 22) all-recursive downloads_clean-recursive:
2992f3e0 (kx 2023-04-06 10:43:27 +0300 23) 	@set fnord $(MAKEFLAGS); amf=$$2; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 24) 	target=`echo $@ | sed s/-recursive//`; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 25) 	list='$(SUBDIRS)'; for subdir in $$list; do \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 26) 	  echo "Making $$target in $$subdir"; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 27) 	  local_target="$$target"; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 28) 	  (cd $$subdir && $(MAKE) $$fnord $$local_target) \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 29) 	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
2992f3e0 (kx 2023-04-06 10:43:27 +0300 30) 	done; test -z "$$fail"
2992f3e0 (kx 2023-04-06 10:43:27 +0300 31) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 32) all: all-recursive
2992f3e0 (kx 2023-04-06 10:43:27 +0300 33) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 34) downloads_clean: downloads_clean-recursive
2992f3e0 (kx 2023-04-06 10:43:27 +0300 35) 
2992f3e0 (kx 2023-04-06 10:43:27 +0300 36) .PHONY: all-recursive downloads_clean-recursive all downloads_clean