mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-12 16:02:57 +00:00
32 lines
740 B
Makefile
32 lines
740 B
Makefile
|
PORT_DIR = $(call port_dir,$(GENODE_DIR)/repos/libports/ports/pcg-c)
|
||
|
|
||
|
pcg_srcs = $(notdir $(wildcard $(PORT_DIR)/src/lib/pcg-c/src/*-$(1).c))
|
||
|
|
||
|
MIRROR_FROM_PORT_DIR := $(addprefix src/lib/pcg-c/src/,\
|
||
|
$(call pcg_srcs,8) \
|
||
|
$(call pcg_srcs,16) \
|
||
|
$(call pcg_srcs,32) \
|
||
|
$(call pcg_srcs,64) \
|
||
|
$(call pcg_srcs,128) ) \
|
||
|
include/pcg-c/pcg_variants.h
|
||
|
|
||
|
content: $(MIRROR_FROM_PORT_DIR)
|
||
|
|
||
|
$(MIRROR_FROM_PORT_DIR):
|
||
|
mkdir -p $(dir $@)
|
||
|
cp -r $(PORT_DIR)/$@ $@
|
||
|
|
||
|
MIRROR_FROM_REP_DIR := \
|
||
|
lib/mk/libpcg_random.mk \
|
||
|
lib/import/import-libpcg_random.mk \
|
||
|
include/pcg-c/genode_inttypes.h
|
||
|
|
||
|
content: $(MIRROR_FROM_REP_DIR)
|
||
|
|
||
|
$(MIRROR_FROM_REP_DIR):
|
||
|
$(mirror_from_rep_dir)
|
||
|
|
||
|
SRC_DIR = src/test/tcp
|
||
|
|
||
|
include $(GENODE_DIR)/repos/base/recipes/src/content.inc
|