Radix cross Linux 3pp sources

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

423 Commits   0 Branches   0 Tags
author: kx <kx@radix.pro> 2023-11-30 19:42:18 +0300 committer: kx <kx@radix.pro> 2023-11-30 19:42:18 +0300 commit: 42ce6df8e9b8e0a52bc9c1d82a7eeb0cde5974a4 parent: 3345d4929645612caeb8681883d3f5346940b0c9
Commit Summary:
KDE: utilites 23.08.3
Diffstat:
1 file changed, 40 insertions, 0 deletions
diff --git a/KDE/utilites/Makefile b/KDE/utilites/Makefile
new file mode 100644
index 0000000..bd79290
--- /dev/null
+++ b/KDE/utilites/Makefile
@@ -0,0 +1,47 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := ark            \
+           filelight      \
+           kate           \
+           kbackup        \
+           kcalc          \
+           kcharselect    \
+           kclock         \
+           kdebugsettings \
+           kdialog        \
+           kdf            \
+           keditbookmarks \
+           keysmith       \
+           kfind          \
+           kgpg           \
+           kongress       \
+           konsole        \
+           krecorder      \
+           kteatime       \
+           ktimer         \
+           kwalletmanager \
+           markdownpart   \
+           skanpage       \
+           sweeper        \
+           yakuake
+
+
+all-recursive downloads_clean-recursive:
+	@set fnord $(MAKEFLAGS); amf=$$2; \
+	target=`echo $@ | sed s/-recursive//`; \
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  echo "Making $$target in $$subdir"; \
+	  local_target="$$target"; \
+	  (cd $$subdir && $(MAKE) $$fnord $$local_target) \
+	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+	done; test -z "$$fail"
+
+all: all-recursive
+
+downloads_clean: downloads_clean-recursive
+
+.PHONY: all-recursive downloads_clean-recursive all downloads_clean