author: kx <kx@radix.pro> 2023-11-30 14:46:44 +0300
committer: kx <kx@radix.pro> 2023-11-30 14:46:44 +0300
commit: c32539f94573b8aec1d963c3a400939bfe323fa0
parent: 3f6d62093dd68f1efe406f3e0078ab98a1be34fd
Commit Summary:
Diffstat:
1 file changed, 38 insertions, 0 deletions
diff --git a/KDE/education/Makefile b/KDE/education/Makefile
new file mode 100644
index 0000000..1cda524
--- /dev/null
+++ b/KDE/education/Makefile
@@ -0,0 +1,45 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := analitza \
+ artikulate \
+ blinken \
+ cantor \
+ kalgebra \
+ kalzium \
+ kanagram \
+ kbruch \
+ kdeedu-data \
+ kgeography \
+ khangman \
+ kig \
+ kiten \
+ klettres \
+ kmplot \
+ ktouch \
+ libkeduvocdocument \
+ marble \
+ minuet \
+ parley \
+ rocs \
+ step
+
+
+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