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