mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 23:42:32 +00:00
7f2f2d9120
Merge core only libs into the target make-files. Use base-hw specific Board drivers that inherit from generic Board_base. Use Page_flags::access_t instead of additional page_flags_t. Fix #570
15 lines
360 B
Makefile
15 lines
360 B
Makefile
#
|
|
# \brief Implementation of the Genode thread-API
|
|
# \author Martin Stein
|
|
# \date 2012-04-16
|
|
#
|
|
|
|
# add C++ sources
|
|
SRC_CC += thread.cc thread_bootstrap.cc thread_support.cc
|
|
|
|
# declare source paths
|
|
vpath thread_support.cc $(REP_DIR)/src/base/
|
|
vpath thread_bootstrap.cc $(BASE_DIR)/src/base/thread/
|
|
vpath thread.cc $(BASE_DIR)/src/base/thread/
|
|
|