summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'UI/Qt/Makefile.inc')
-rw-r--r--UI/Qt/Makefile.inc28
1 files changed, 0 insertions, 28 deletions
diff --git a/UI/Qt/Makefile.inc b/UI/Qt/Makefile.inc
deleted file mode 100644
index 570e631..0000000
--- a/UI/Qt/Makefile.inc
+++ /dev/null
@@ -1,28 +0,0 @@
-TARGETS += qt
-CLEAN_TARGETS += clean-qt
-
-ifeq ($(WIN32),1)
-QT_MAKE=nmake
-else
-QT_MAKE=$(MAKE)
-endif
-
-
-.PHONY: qt
-qt: UI/Qt/Makefile Swiften/Swiften.a $(BUNDLED_LIBS)
- cd UI/Qt && $(QT_MAKE)
-
-.PHONY: clean-qt
-clean-qt:
- if [ -f "UI/Qt/Makefile" ]; then \
- cd UI/Qt && $(QT_MAKE) clean; \
- fi
-
-UI/Qt/Makefile: UI/Qt/DefaultTheme.qrc UI/Qt/Swiften.pri
- cd UI/Qt && $(QMAKE) Swift.pro
-
-UI/Qt/Swiften.pri:
- cd UI/Qt && ./qmakeish.py ../../Makefile > Swiften.pri
-
-UI/Qt/DefaultTheme.qrc:
- cd UI/Qt && ../../tools/ThemeQRC.py ../../resources/themes/Default > DefaultTheme.qrc