Radix cross Linux 3pp sources

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

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