summaryrefslogtreecommitdiff
path: root/KDE/utilites/Makefile
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-11-30 19:42:18 +0300
committerkx <kx@radix.pro>2023-11-30 19:42:18 +0300
commit42ce6df8e9b8e0a52bc9c1d82a7eeb0cde5974a4 (patch)
tree15f5f2240a0b4321a2d7e62462ad5c2d40867e85 /KDE/utilites/Makefile
parent3345d4929645612caeb8681883d3f5346940b0c9 (diff)
downloadsources-42ce6df8e9b8e0a52bc9c1d82a7eeb0cde5974a4.tar.xz
KDE: utilites 23.08.3
Diffstat (limited to 'KDE/utilites/Makefile')
-rw-r--r--KDE/utilites/Makefile47
1 files changed, 47 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