mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-01 11:36:43 +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
24 lines
537 B
Makefile
24 lines
537 B
Makefile
#
|
|
# \brief Portions of base library that are exclusive to non-core components
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
LIBS += base-common startup
|
|
|
|
SRC_CC += console/log_console.cc
|
|
SRC_CC += cpu/cache.cc
|
|
SRC_CC += env/env.cc
|
|
SRC_CC += env/context_area.cc
|
|
SRC_CC += env/reinitialize.cc
|
|
SRC_CC += thread/start.cc
|
|
SRC_CC += irq/platform.cc
|
|
SRC_CC += env.cc
|
|
SRC_CC += capability.cc
|
|
SRC_CC += server/rpc_cap_alloc.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/include $(BASE_DIR)/src/include
|
|
|
|
vpath % $(REP_DIR)/src/base
|
|
vpath % $(BASE_DIR)/src/base
|