mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 06:33:31 +00:00
ccffbb0dfc
Fixes #2184
18 lines
434 B
Makefile
18 lines
434 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 += capability.cc capability_raw.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
|