mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +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
38 lines
661 B
Makefile
38 lines
661 B
Makefile
#
|
|
# Specifics for Fiasco.OC on ARM
|
|
#
|
|
|
|
SPECS += foc
|
|
|
|
#
|
|
# Linker options that are specific for arm
|
|
#
|
|
LD_TEXT_ADDR ?= 0x01000000
|
|
|
|
#
|
|
# ARM-specific L4/sys headers
|
|
#
|
|
L4_INC_DIR = $(BUILD_BASE_DIR)/include/arm
|
|
L4F_INC_DIR = $(BUILD_BASE_DIR)/include/arm/l4f
|
|
|
|
#
|
|
# Support for Fiasco.OC's ARM-specific atomic functions
|
|
#
|
|
REP_INC_DIR += include/arm
|
|
|
|
#
|
|
# Defines for L4/sys headers
|
|
#
|
|
CC_OPT += -DCONFIG_L4_CALL_SYSCALLS -DARCH_arm
|
|
|
|
#
|
|
# Architecture-specific L4sys header files
|
|
#
|
|
L4_INC_TARGETS = arm/l4/sys \
|
|
arm/l4f/l4/sys \
|
|
arm/l4/vcpu
|
|
|
|
include $(call select_from_repositories,mk/spec-foc.mk)
|
|
|
|
INC_DIR += $(L4F_INC_DIR) $(L4_INC_DIR)
|