mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-03 20:44:11 +00:00
98def2488a
The thread library (thread.cc) in base-foc shared 95% of the code with the generic implementation except myself(). Therefore, its implementation is now separated from the other generic sources into myself.cc, which allows base-foc to use a foc-specific primitive to enable our base libraries in L4Linux. Issue #1491
17 lines
311 B
Makefile
17 lines
311 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
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
|
|
include $(REP_DIR)/lib/mk/base.inc
|
|
|
|
|
|
|