2014-02-21 13:34:27 +01: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
|
2016-01-23 14:42:55 +01:00
|
|
|
SRC_CC += env/env.cc env/platform_env.cc env/stack_area.cc
|
2016-01-19 20:24:22 +01:00
|
|
|
SRC_CC += server/rpc_cap_alloc.cc
|
2014-02-21 13:34:27 +01:00
|
|
|
|
2016-01-20 18:27:18 +01:00
|
|
|
INC_DIR += $(REP_DIR)/src/include $(BASE_DIR)/src/include
|
2014-02-21 13:34:27 +01:00
|
|
|
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
|
|
|
|
|
|
# vi:set ft=make :
|