mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-09 06:22:46 +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
19 lines
346 B
Makefile
19 lines
346 B
Makefile
#
|
|
# \brief Base lib parts that are not used by hybrid applications
|
|
# \author Sebastian Sumpf
|
|
# \date 2014-02-21
|
|
#
|
|
|
|
LIBS += startup cxx
|
|
|
|
SRC_CC += thread/thread.cc thread/myself.cc thread/thread_linux.cc
|
|
SRC_CC += server/rpc_cap_alloc.cc
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
|
|
include $(REP_DIR)/lib/mk/base.inc
|
|
|
|
|
|
|