mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
e6729316ff
This patch establishes a common organization of header files internal to the base framework. The internal headers are located at '<repository>/src/include/base/internal/'. This structure has been choosen to make the nature of those headers immediately clear when included: #include <base/internal/lock_helper.h> Issue #1832
22 lines
584 B
Makefile
22 lines
584 B
Makefile
#
|
|
# \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
|
|
SRC_CC += server/rpc_cap_alloc.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/include $(BASE_DIR)/src/include
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
|
|
# vi:set ft=make :
|