mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
17 lines
400 B
Makefile
17 lines
400 B
Makefile
|
#
|
||
|
# \brief Portions of base library that are exclusive to non-core processes
|
||
|
# \author Norman Feske
|
||
|
# \date 2013-02-14
|
||
|
#
|
||
|
|
||
|
LIBS += base-common startup
|
||
|
|
||
|
SRC_CC += console/log_console.cc
|
||
|
SRC_CC += env/env.cc env/context_area.cc env/reload_parent_cap.cc
|
||
|
SRC_CC += thread/thread.cc thread_support.cc
|
||
|
|
||
|
INC_DIR += $(BASE_DIR)/src/base/env
|
||
|
|
||
|
vpath %.cc $(REP_DIR)/src/base
|
||
|
vpath %.cc $(BASE_DIR)/src/base
|