mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
97 lines
3.4 KiB
Makefile
97 lines
3.4 KiB
Makefile
|
include $(call select_from_repositories,lib/import/import-qt5_qmake.mk)
|
||
|
|
||
|
QT5_PORT_LIBS = libQt5Core libQt5Gui libQt5Network libQt5Sql libQt5Test libQt5Widgets
|
||
|
|
||
|
LIBS = libc libm mesa stdcxx $(QT5_PORT_LIBS)
|
||
|
|
||
|
built.tag: qmake_prepared.tag
|
||
|
|
||
|
@#
|
||
|
@# run qmake
|
||
|
@#
|
||
|
|
||
|
$(VERBOSE)source env.sh && $(QMAKE) \
|
||
|
-qtconf qmake_root/mkspecs/$(QMAKE_PLATFORM)/qt.conf \
|
||
|
$(QT_DIR)/qtdeclarative/qtdeclarative.pro \
|
||
|
-- \
|
||
|
-no-feature-qml-devtools \
|
||
|
$(QT5_OUTPUT_FILTER)
|
||
|
|
||
|
@#
|
||
|
@# build
|
||
|
@#
|
||
|
|
||
|
$(VERBOSE)source env.sh && $(MAKE) sub-src $(QT5_OUTPUT_FILTER)
|
||
|
|
||
|
@#
|
||
|
@# install into local 'install' directory
|
||
|
@#
|
||
|
|
||
|
$(VERBOSE)$(MAKE) INSTALL_ROOT=$(CURDIR)/install sub-src-install_subtargets $(QT5_OUTPUT_FILTER)
|
||
|
|
||
|
$(VERBOSE)ln -sf .$(CURDIR)/qmake_root install/qt
|
||
|
|
||
|
@#
|
||
|
@# create stripped versions
|
||
|
@#
|
||
|
|
||
|
$(VERBOSE)cd $(CURDIR)/install/qt/lib && \
|
||
|
$(STRIP) libQt5Qml.lib.so -o libQt5Qml.lib.so.stripped && \
|
||
|
$(STRIP) libQt5Quick.lib.so -o libQt5Quick.lib.so.stripped && \
|
||
|
$(STRIP) libQt5QuickWidgets.lib.so -o libQt5QuickWidgets.lib.so.stripped
|
||
|
|
||
|
$(VERBOSE)cd $(CURDIR)/install/qt/qml/Qt/labs/folderlistmodel && \
|
||
|
$(STRIP) libqmlfolderlistmodelplugin.lib.so -o libqmlfolderlistmodelplugin.lib.so.stripped
|
||
|
|
||
|
$(VERBOSE)cd $(CURDIR)/install/qt/qml/QtQuick.2 && \
|
||
|
$(STRIP) libqtquick2plugin.lib.so -o libqtquick2plugin.lib.so.stripped
|
||
|
|
||
|
$(VERBOSE)cd $(CURDIR)/install/qt/qml/QtQuick/Layouts && \
|
||
|
$(STRIP) libqquicklayoutsplugin.lib.so -o libqquicklayoutsplugin.lib.so.stripped
|
||
|
|
||
|
$(VERBOSE)cd $(CURDIR)/install/qt/qml/QtQuick/Window.2 && \
|
||
|
$(STRIP) libwindowplugin.lib.so -o libwindowplugin.lib.so.stripped
|
||
|
|
||
|
@#
|
||
|
@# create symlinks in 'bin' directory
|
||
|
@#
|
||
|
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/lib/libQt5Qml.lib.so.stripped $(PWD)/bin/libQt5Qml.lib.so
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/lib/libQt5Quick.lib.so.stripped $(PWD)/bin/libQt5Quick.lib.so
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/lib/libQt5QuickWidgets.lib.so.stripped $(PWD)/bin/libQt5QuickWidgets.lib.so
|
||
|
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.lib.so.stripped $(PWD)/bin/libqmlfolderlistmodelplugin.lib.so
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/QtQuick.2/libqtquick2plugin.lib.so.stripped $(PWD)/bin/libqtquick2plugin.lib.so
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/QtQuick/Layouts/libqquicklayoutsplugin.lib.so.stripped $(PWD)/bin/libqquicklayoutsplugin.lib.so
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/QtQuick/Window.2/libwindowplugin.lib.so.stripped $(PWD)/bin/libwindowplugin.lib.so
|
||
|
|
||
|
@#
|
||
|
@# create symlinks in 'debug' directory
|
||
|
@#
|
||
|
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/lib/libQt5Qml.lib.so $(PWD)/debug/
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/lib/libQt5Quick.lib.so $(PWD)/debug/
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/lib/libQt5QuickWidgets.lib.so $(PWD)/debug/
|
||
|
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.lib.so $(PWD)/debug/
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/QtQuick.2/libqtquick2plugin.lib.so $(PWD)/debug/
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/QtQuick/Layouts/libqquicklayoutsplugin.lib.so $(PWD)/debug/
|
||
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/QtQuick/Window.2/libwindowplugin.lib.so $(PWD)/debug/
|
||
|
|
||
|
@#
|
||
|
@# create tar archives
|
||
|
@#
|
||
|
|
||
|
$(VERBOSE)tar chf $(PWD)/bin/qt5_declarative_qml.tar --exclude='*.lib.so' --transform='s/\.stripped//' -C install qt/qml
|
||
|
|
||
|
@#
|
||
|
@# mark as done
|
||
|
@#
|
||
|
|
||
|
$(VERBOSE)touch $@
|
||
|
|
||
|
|
||
|
ifeq ($(called_from_lib_mk),yes)
|
||
|
all: built.tag
|
||
|
endif
|