mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 08:51:08 +00:00
a168c9d6ce
The global capability ID counter is not used by NOVA and Fiasco.OC and in the future not needed by base-hw too. Thereby, remove the static counter variable from the generic code base and add it where appropriated. Ref #1443
60 lines
2.2 KiB
PHP
60 lines
2.2 KiB
PHP
TARGET = core
|
|
REQUIRES = pistachio
|
|
LIBS = base-common
|
|
|
|
GEN_CORE_DIR = $(BASE_DIR)/src/core
|
|
|
|
SRC_CC = main.cc \
|
|
multiboot_info.cc \
|
|
ram_session_component.cc \
|
|
ram_session_support.cc \
|
|
rom_session_component.cc \
|
|
cap_session_component.cc \
|
|
cpu_session_component.cc \
|
|
cpu_session_platform.cc \
|
|
pd_session_component.cc \
|
|
io_mem_session_component.cc \
|
|
io_mem_session_support.cc \
|
|
thread_start.cc \
|
|
platform_thread.cc \
|
|
platform_pd.cc \
|
|
platform.cc \
|
|
platform_services.cc \
|
|
dataspace_component.cc \
|
|
rm_session_component.cc \
|
|
rm_session_support.cc \
|
|
irq_session_component.cc \
|
|
signal_session_component.cc \
|
|
signal_source_component.cc \
|
|
trace_session_component.cc \
|
|
dump_alloc.cc \
|
|
context_area.cc \
|
|
core_printf.cc \
|
|
kip.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/core/include \
|
|
$(REP_DIR)/src/base/console \
|
|
$(BASE_DIR)/src/base/thread \
|
|
$(GEN_CORE_DIR)/include
|
|
|
|
include $(GEN_CORE_DIR)/version.inc
|
|
|
|
vpath main.cc $(GEN_CORE_DIR)
|
|
vpath ram_session_component.cc $(GEN_CORE_DIR)
|
|
vpath rom_session_component.cc $(GEN_CORE_DIR)
|
|
vpath cap_session_component.cc $(GEN_CORE_DIR)
|
|
vpath cpu_session_component.cc $(GEN_CORE_DIR)
|
|
vpath pd_session_component.cc $(GEN_CORE_DIR)
|
|
vpath rm_session_component.cc $(GEN_CORE_DIR)
|
|
vpath io_mem_session_component.cc $(GEN_CORE_DIR)
|
|
vpath io_mem_session_support.cc $(GEN_CORE_DIR)
|
|
vpath signal_session_component.cc $(GEN_CORE_DIR)
|
|
vpath signal_source_component.cc $(GEN_CORE_DIR)
|
|
vpath trace_session_component.cc $(GEN_CORE_DIR)
|
|
vpath dataspace_component.cc $(GEN_CORE_DIR)
|
|
vpath dump_alloc.cc $(GEN_CORE_DIR)
|
|
vpath context_area.cc $(GEN_CORE_DIR)
|
|
vpath core_printf.cc $(BASE_DIR)/src/base/console
|
|
vpath kip.cc $(REP_DIR)/src/base/kip
|
|
vpath %.cc $(REP_DIR)/src/core
|