mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
12 lines
360 B
Makefile
12 lines
360 B
Makefile
#
|
|
# Create symlink to Pistachio's user library
|
|
#
|
|
#
|
|
-include $(BUILD_BASE_DIR)/etc/pistachio.conf
|
|
|
|
absdir = $(realpath $(shell find $(1) -maxdepth 0 -type d))
|
|
PISTACHIO_USER_BUILD_ABS_DIR = $(call absdir,$(PISTACHIO_USER_BUILD_DIR))
|
|
|
|
$(shell mkdir -p $(LIB_CACHE_DIR)/l4)
|
|
$(shell ln -sf $(PISTACHIO_USER_BUILD_ABS_DIR)/lib/libl4.a $(LIB_CACHE_DIR)/l4/l4.lib.a)
|