include $(call select_from_repositories,lib/import/import-qt5_qmake.mk) QT5_PORT_LIBS += libQt5Core libQt5Gui libQt5Network QT5_PORT_LIBS += libQt5Qml libQt5QmlModels libQt5Quick LIBS = libc libm mesa stdcxx $(QT5_PORT_LIBS) INSTALL_LIBS = qml/QtGraphicalEffects/libqtgraphicaleffectsplugin.lib.so \ qml/QtGraphicalEffects/private/libqtgraphicaleffectsprivate.lib.so built.tag: qmake_prepared.tag @# @# run qmake @# $(VERBOSE)source env.sh && $(QMAKE) \ -qtconf qmake_root/mkspecs/$(QMAKE_PLATFORM)/qt.conf \ $(QT_DIR)/qtgraphicaleffects/qtgraphicaleffects.pro \ $(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 @# @# strip libs and create symlinks in 'bin' and 'debug' directories @# for LIB in $(INSTALL_LIBS); do \ cd $(CURDIR)/install/qt/$$(dirname $${LIB}) && \ $(OBJCOPY) --only-keep-debug $$(basename $${LIB}) $$(basename $${LIB}).debug && \ $(STRIP) $$(basename $${LIB}) -o $$(basename $${LIB}).stripped && \ $(OBJCOPY) --add-gnu-debuglink=$$(basename $${LIB}).debug $$(basename $${LIB}); \ ln -sf $(CURDIR)/install/qt/$${LIB}.stripped $(PWD)/bin/$$(basename $${LIB}); \ ln -sf $(CURDIR)/install/qt/$${LIB}.stripped $(PWD)/debug/$$(basename $${LIB}); \ ln -sf $(CURDIR)/install/qt/$${LIB}.debug $(PWD)/debug/; \ done @# @# create tar archives @# $(VERBOSE)tar chf $(PWD)/bin/qt5_graphicaleffects_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