author: kx <kx@radix.pro> 2023-11-29 15:22:21 +0300
committer: kx <kx@radix.pro> 2023-11-29 15:22:21 +0300
commit: b8086bfce26eaf33165099fe6cc7d8c1dd844e92
parent: 4a4a969af37f27cd662c011af871741756a57a92
Commit Summary:
Diffstat:
1 file changed, 100 insertions, 0 deletions
diff --git a/KDE/frameworks/Makefile b/KDE/frameworks/Makefile
new file mode 100644
index 0000000..2b08c65
--- /dev/null
+++ b/KDE/frameworks/Makefile
@@ -0,0 +1,106 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := attica \
+ baloo \
+ prison \
+ bluez-qt \
+ breeze-icons \
+ extra-cmake-modules \
+ kapidox \
+ frameworkintegration \
+ karchive \
+ kauth \
+ kbookmarks \
+ kcalendarcore \
+ kcmutils \
+ kcodecs \
+ kcolorscheme \
+ kcompletion \
+ kconfig \
+ kconfigwidgets \
+ kcontacts \
+ kcoreaddons \
+ kcrash \
+ kdav \
+ kdbusaddons \
+ kdelibs4support \
+ kdeclarative \
+ kded \
+ kdesignerplugin \
+ kdesu \
+ kdewebkit \
+ kdnssd \
+ kdoctools \
+ kemoticons \
+ kfilemetadata \
+ kglobalaccel \
+ kguiaddons \
+ kholidays \
+ khtml \
+ ki18n \
+ kiconthemes \
+ kidletime \
+ kimageformats \
+ kinit \
+ kio \
+ kirigami \
+ kitemmodels \
+ kitemviews \
+ kjobwidgets \
+ kjs \
+ kjsembed \
+ kmediaplayer \
+ knewstuff \
+ knotifications \
+ knotifyconfig \
+ kparts \
+ kpeople \
+ kplotting \
+ kpty \
+ kross \
+ krunner \
+ kservice \
+ kstatusnotifieritem \
+ ksvg \
+ ktexteditor \
+ ktexttemplate \
+ ktextwidgets \
+ kunitconversion \
+ kuserfeedback \
+ kwallet \
+ kwidgetsaddons \
+ kwindowsystem \
+ kxmlgui \
+ kxmlrpcclient \
+ modemmanager-qt \
+ networkmanager-qt \
+ oxygen-icons \
+ kpackage \
+ purpose \
+ qqc2-desktop-style \
+ kquickcharts \
+ solid \
+ sonnet \
+ syndication \
+ syntax-highlighting \
+ threadweaver
+
+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