2014-02-21 12:34:27 +00:00
|
|
|
#
|
|
|
|
# \brief Portions of base library that are exclusive to non-core processes
|
|
|
|
# \author Norman Feske
|
|
|
|
# \date 2013-02-14
|
|
|
|
#
|
|
|
|
# The content of this file is used for both native Genode as well as hybrid
|
|
|
|
# Linux/Genode programs. Hence, it must be void of any thread-related code.
|
|
|
|
#
|
|
|
|
|
|
|
|
LIBS += base-common syscall cxx
|
|
|
|
|
|
|
|
SRC_CC += console/log_console.cc
|
|
|
|
SRC_CC += env/env.cc env/platform_env.cc env/context_area.cc
|
2016-01-19 19:24:22 +00:00
|
|
|
SRC_CC += server/rpc_cap_alloc.cc
|
2014-02-21 12:34:27 +00:00
|
|
|
|
2016-01-20 17:27:18 +00:00
|
|
|
INC_DIR += $(REP_DIR)/src/include $(BASE_DIR)/src/include
|
2014-02-21 12:34:27 +00:00
|
|
|
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
|
|
|
|
|
|
# vi:set ft=make :
|