mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
5080e88a7a
Fixes #4823
17 lines
450 B
Makefile
17 lines
450 B
Makefile
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/qt5)
|
|
|
|
MIRROR_SYMBOLS := src/lib/qt5/genode/api/lib/symbols/libQt5WebEngine \
|
|
src/lib/qt5/genode/api/lib/symbols/libQt5WebEngineCore \
|
|
src/lib/qt5/genode/api/lib/symbols/libQt5WebEngineWidgets \
|
|
|
|
content: $(MIRROR_SYMBOLS)
|
|
|
|
$(MIRROR_SYMBOLS):
|
|
mkdir -p lib/symbols
|
|
cp $(PORT_DIR)/$@ lib/symbols
|
|
|
|
content: LICENSE
|
|
|
|
LICENSE:
|
|
cp $(PORT_DIR)/src/lib/qt5/LICENSE.LGPLv3 $@
|