diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-01 08:48:42 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-01 09:24:28 (GMT) |
commit | 2812bddd81f8a1b804c7460f4e14cd0aa393d129 (patch) | |
tree | d46294f35150c4f0f43deaf2d31fceaf945ae715 /UI/Qt/Makefile.inc | |
download | swift-2812bddd81f8a1b804c7460f4e14cd0aa393d129.zip swift-2812bddd81f8a1b804c7460f4e14cd0aa393d129.tar.bz2 |
Import.
Diffstat (limited to 'UI/Qt/Makefile.inc')
-rw-r--r-- | UI/Qt/Makefile.inc | 19 |
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 |