Files
genode/repos/libports/recipes/src/stdcxx/content.mk
Norman Feske dd9e12601e Remove pseudo targets for building shared libs
Thanks to the change "build: support library builds via lib/<libname>",
shared libraries can now be built directly by the build system.

Issue #4599
2022-09-19 14:00:32 +02:00

24 lines
576 B
Makefile

MIRROR_FROM_REP_DIR := lib/mk/stdcxx-c++98.mk \
lib/mk/stdcxx.mk \
lib/import/import-stdcxx.mk
MIRROR_FROM_PORT_DIR := src/lib/stdcxx
content: $(MIRROR_FROM_REP_DIR) $(MIRROR_FROM_PORT_DIR)
$(MIRROR_FROM_REP_DIR):
$(mirror_from_rep_dir)
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/stdcxx)
$(MIRROR_FROM_PORT_DIR):
mkdir -p $(dir $@)
cp -r $(PORT_DIR)/$@ $(dir $@)
content: LICENSE
LICENSE:
( echo "GNU GPL version 3 with runtime library exception,"; \
echo "see src/lib/stdcxx/doc/html/manual/license.html" ) > $@