mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 17:18:53 +00:00
20 lines
497 B
Makefile
20 lines
497 B
Makefile
#
|
|
# \brief Portions of base library that are exclusive to non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
LIBS += base-common syscall
|
|
|
|
SRC_CC += console/log_console.cc
|
|
SRC_CC += env/env.cc env/context_area.cc env/reinitialize.cc
|
|
SRC_CC += env/capability_space.cc
|
|
SRC_CC += thread/thread_start.cc thread/thread_init.cc
|
|
SRC_CC += irq/platform.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/base
|
|
INC_DIR += $(BASE_DIR)/src/base/env
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|