mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 16:31:06 +00:00
40a5af42eb
This patch moves the base library from src/base to src/lib/base, flattens the library-internal directory structure, and moves the common parts of the library-description files to base/lib/mk/base.inc and base/lib/mk/base-common.inc. Furthermore, the patch fixes a few cosmetic issues (whitespace and comments only) that I encountered while browsing the result. Fixes #1952
20 lines
461 B
Makefile
20 lines
461 B
Makefile
#
|
|
# \brief Portions of base library shared by core and non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
include $(BASE_DIR)/lib/mk/base-common.inc
|
|
|
|
LIBS += startup syscall
|
|
|
|
SRC_CC += cap_copy.cc
|
|
SRC_CC += signal_submit.cc
|
|
SRC_CC += rpc_dispatch_loop.cc
|
|
SRC_CC += thread.cc thread_bootstrap.cc thread_myself.cc
|
|
|
|
# suppress warning caused by Pistachio's 'l4/message.h'
|
|
CC_WARN += -Wno-array-bounds
|
|
|
|
vpath cap_copy.cc $(BASE_DIR)/src/lib/startup
|