Radix cross Linux 3pp sources

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

423 Commits   0 Branches   0 Tags
42ce6df8 (kx 2023-11-30 19:42:18 +0300  1) 
42ce6df8 (kx 2023-11-30 19:42:18 +0300  2) #
42ce6df8 (kx 2023-11-30 19:42:18 +0300  3) # Following command helps to cheate SUBDIRS list:
42ce6df8 (kx 2023-11-30 19:42:18 +0300  4) # $ tree -fid .
42ce6df8 (kx 2023-11-30 19:42:18 +0300  5) #
42ce6df8 (kx 2023-11-30 19:42:18 +0300  6) 
42ce6df8 (kx 2023-11-30 19:42:18 +0300  7) SUBDIRS := ark            \
42ce6df8 (kx 2023-11-30 19:42:18 +0300  8)            filelight      \
42ce6df8 (kx 2023-11-30 19:42:18 +0300  9)            kate           \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 10)            kbackup        \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 11)            kcalc          \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 12)            kcharselect    \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 13)            kclock         \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 14)            kdebugsettings \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 15)            kdialog        \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 16)            kdf            \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 17)            keditbookmarks \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 18)            keysmith       \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 19)            kfind          \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 20)            kgpg           \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 21)            kongress       \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 22)            konsole        \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 23)            krecorder      \
81536ca2 (kx 2023-11-30 22:13:15 +0300 24)            krename        \
4a80b402 (kx 2023-11-30 22:53:39 +0300 25)            krusader       \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 26)            kteatime       \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 27)            ktimer         \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 28)            kwalletmanager \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 29)            markdownpart   \
eb75a341 (kx 2023-11-30 23:08:38 +0300 30)            okteta         \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 31)            skanpage       \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 32)            sweeper        \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 33)            yakuake
42ce6df8 (kx 2023-11-30 19:42:18 +0300 34) 
42ce6df8 (kx 2023-11-30 19:42:18 +0300 35) 
42ce6df8 (kx 2023-11-30 19:42:18 +0300 36) all-recursive downloads_clean-recursive:
42ce6df8 (kx 2023-11-30 19:42:18 +0300 37) 	@set fnord $(MAKEFLAGS); amf=$$2; \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 38) 	target=`echo $@ | sed s/-recursive//`; \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 39) 	list='$(SUBDIRS)'; for subdir in $$list; do \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 40) 	  echo "Making $$target in $$subdir"; \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 41) 	  local_target="$$target"; \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 42) 	  (cd $$subdir && $(MAKE) $$fnord $$local_target) \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 43) 	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
42ce6df8 (kx 2023-11-30 19:42:18 +0300 44) 	done; test -z "$$fail"
42ce6df8 (kx 2023-11-30 19:42:18 +0300 45) 
42ce6df8 (kx 2023-11-30 19:42:18 +0300 46) all: all-recursive
42ce6df8 (kx 2023-11-30 19:42:18 +0300 47) 
42ce6df8 (kx 2023-11-30 19:42:18 +0300 48) downloads_clean: downloads_clean-recursive
42ce6df8 (kx 2023-11-30 19:42:18 +0300 49) 
42ce6df8 (kx 2023-11-30 19:42:18 +0300 50) .PHONY: all-recursive downloads_clean-recursive all downloads_clean