mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 09:12:32 +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
17 lines
427 B
Makefile
17 lines
427 B
Makefile
#
|
|
# Create prerequisites for building Genode for OKL4
|
|
#
|
|
# Prior building Genode programs for OKL4, the kernel bindings needed are
|
|
# symlinked to the build directory.
|
|
#
|
|
|
|
#
|
|
# Create mirror for architecture-specific L4 header files
|
|
#
|
|
OKL4_INCLUDE_SYMLINKS = $(BUILD_BASE_DIR)/include/l4/arch
|
|
|
|
include $(REP_DIR)/lib/mk/platform.inc
|
|
|
|
$(BUILD_BASE_DIR)/include/l4/arch: $(OKL4_DIR)/arch/ia32/libs/l4/include
|
|
$(VERBOSE)ln -sf $< $@
|