summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'UI/Qt/Makefile.inc')
-rw-r--r--UI/Qt/Makefile.inc19
1 files changed, 19 insertions, 0 deletions
diff --git a/UI/Qt/Makefile.inc b/UI/Qt/Makefile.inc
new file mode 100644
index 0000000..d1587ad
--- /dev/null
+++ b/UI/Qt/Makefile.inc
@@ -0,0 +1,19 @@
+TARGETS += qt
+CLEAN_TARGETS += clean-qt
+
+.PHONY: qt
+qt: UI/Qt/Makefile
+ $(MAKE) -C UI/Qt
+
+.PHONY: clean-qt
+ if [ -f "UI/Qt/Makefile" ]; then \
+ $(MAKE) -C UI/Qt clean; \
+ fi
+
+UI/Qt/Makefile: UI/Qt/Swift.pro
+ cd UI/Qt && $(QMAKE) Swift.pro
+
+UI/Qt/Swift.pro: UI/Qt/DefaultTheme.qrc
+
+UI/Qt/DefaultTheme.qrc:
+ cd UI/Qt && ../../tools/ThemeQRC.py ../../resources/themes/Default > DefaultTheme.qrc