mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
Thanks to the change "build: support library builds via lib/<libname>", shared libraries can now be built directly by the build system. Issue #4599
22 lines
423 B
Makefile
22 lines
423 B
Makefile
MIRROR_FROM_REP_DIR := lib/mk/qt5_quickcontrols.mk
|
|
|
|
content: $(MIRROR_FROM_REP_DIR)
|
|
|
|
$(MIRROR_FROM_REP_DIR):
|
|
$(mirror_from_rep_dir)
|
|
|
|
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/qt5)
|
|
|
|
MIRROR_FROM_PORT_DIR := src/lib/qt5/qtquickcontrols
|
|
|
|
content: $(MIRROR_FROM_PORT_DIR)
|
|
|
|
$(MIRROR_FROM_PORT_DIR):
|
|
mkdir -p $(dir $@)
|
|
cp -r $(PORT_DIR)/$@ $(dir $@)
|
|
|
|
content: LICENSE
|
|
|
|
LICENSE:
|
|
cp $(PORT_DIR)/src/lib/qt5/LICENSE.LGPLv3 $@
|