Radix cross Linux 3pp sources

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

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