Radix cross Linux 3pp sources

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

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