mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 08:51:08 +00:00
9ef0f1b6cb
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
18 lines
390 B
Makefile
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 $@
|