mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
34 lines
849 B
Makefile
34 lines
849 B
Makefile
MIRROR_FROM_REP_DIR := lib/import/import-libc.mk \
|
|
lib/symbols/libc \
|
|
lib/symbols/libm \
|
|
|
|
content: $(MIRROR_FROM_REP_DIR)
|
|
|
|
$(MIRROR_FROM_REP_DIR):
|
|
$(mirror_from_rep_dir)
|
|
|
|
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/libc)
|
|
|
|
content: include
|
|
|
|
include:
|
|
mkdir $@
|
|
cp -r $(PORT_DIR)/include/* $@/
|
|
cp -r $(REP_DIR)/include/libc $@/
|
|
cp -r $(REP_DIR)/include/libc-genode $@/
|
|
|
|
content: lib/mk/ldso_so_support.mk src/lib/ldso/so_support.c
|
|
|
|
lib/mk/ldso_so_support.mk src/lib/ldso/so_support.c:
|
|
mkdir -p $(dir $@)
|
|
cp $(GENODE_DIR)/repos/base/$@ $@
|
|
|
|
content: LICENSE
|
|
|
|
LICENSE:
|
|
(echo "Based on FreeBSD, which is BSD licensed:"; \
|
|
echo " http://www.freebsd.org/copyright/freebsd-license.html"; \
|
|
echo "Genode-specific adaptations are AGPLv3 licensed:"; \
|
|
echo " http://genode.org/about/licenses") > $@
|
|
|