genode/repos/libports/recipes/api/format/content.mk
Norman Feske 9ef0f1b6cb libports: freestanding 'format' string library
This little library implements rudimentary format-string support. It is
useful for porting 3rd-party code that ought not depend on a full libc.

Issue #2064
2023-03-13 14:32:53 +01:00

18 lines
390 B
Makefile

MIRROR_FROM_REP_DIR := include/format src/lib/format lib/mk/format.mk
content: $(MIRROR_FROM_REP_DIR)
$(MIRROR_FROM_REP_DIR):
$(mirror_from_rep_dir)
MIRROR_FROM_BASE_DIR := src/include/base/internal/output.h
content: $(MIRROR_FROM_BASE_DIR)
$(MIRROR_FROM_BASE_DIR):
mkdir -p $(dir $@)
cp -r $(addprefix $(GENODE_DIR)/repos/base/,$@) $(dir $@)
LICENSE:
cp $(GENODE_DIR)/LICENSE $@